mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-23 14:18:07 +00:00
12 lines
234 B
C++
12 lines
234 B
C++
#ifndef COMMAND_CONTACT_H_
|
|
#define COMMAND_CONTACT_H_
|
|
|
|
#include "../daemon.h"
|
|
|
|
class ContactCommand: public DaemonCommand {
|
|
public:
|
|
ContactCommand();
|
|
virtual void exec(Daemon *app, const char *args);
|
|
};
|
|
|
|
#endif //COMMAND_CONTACT_H_
|