You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
#include "ListManagerDummy.hh"
|
|
//#include "status_to_string.hh"
|
|
|
|
#include "pEpLog.hh"
|
|
|
|
namespace pEp {
|
|
|
|
void ListManagerDummy::create(
|
|
pEp_identity *group_identity,
|
|
pEp_identity *manager,
|
|
identity_list *memberlist)
|
|
{
|
|
pEpLog("called");
|
|
}
|
|
|
|
void ListManagerDummy::dissolve(pEp_identity *group_identity)
|
|
{
|
|
pEpLog("called");
|
|
}
|
|
|
|
void ListManagerDummy::join(pEp_identity *group_identity, pEp_identity *as_member)
|
|
{
|
|
pEpLog("called");
|
|
}
|
|
|
|
void ListManagerDummy::remove_member(pEp_identity *group_identity, pEp_identity *group_member)
|
|
{
|
|
pEpLog("called");
|
|
}
|
|
|
|
identity_list *ListManagerDummy::groups()
|
|
{
|
|
pEpLog("called");
|
|
return NULL;
|
|
}
|
|
|
|
pEp_identity *ListManagerDummy::manager(const pEp_identity *const group)
|
|
{
|
|
pEpLog("called");
|
|
return NULL;
|
|
}
|
|
|
|
identity_list *ListManagerDummy::members(const pEp_identity *const group)
|
|
{
|
|
pEpLog("called");
|
|
return NULL;
|
|
}
|
|
} // namespace pEp
|
|
|