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