diff options
author | Christian Mueller <christian@lmuc329619u.(none)> | 2011-12-08 18:43:48 +0100 |
---|---|---|
committer | Christian Mueller <christian@lmuc329619u.(none)> | 2011-12-08 18:43:48 +0100 |
commit | 5773404eb801e27179b7c3c7803a990145d6e94a (patch) | |
tree | 4bb9db13fbfb3f72479fd7e6ce342768f299d073 /AudioManagerDaemon/CommandReceive.h | |
parent | 9826492b0066d47cfa9ba68d6efe737cc3c317a3 (diff) | |
download | audiomanager-5773404eb801e27179b7c3c7803a990145d6e94a.tar.gz |
total rework
no more QT
Diffstat (limited to 'AudioManagerDaemon/CommandReceive.h')
-rw-r--r-- | AudioManagerDaemon/CommandReceive.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/AudioManagerDaemon/CommandReceive.h b/AudioManagerDaemon/CommandReceive.h deleted file mode 100644 index 39f6ed5..0000000 --- a/AudioManagerDaemon/CommandReceive.h +++ /dev/null @@ -1,37 +0,0 @@ -/* - * CommandReceive.h - * - * Created on: Jul 26, 2011 - * Author: christian - */ - -#ifndef COMMANDRECEIVE_H_ -#define COMMANDRECEIVE_H_ - -#include "commandInterface.h" -#include "audioManagerIncludes.h" - -class CommandReceiveInterface; - -class CommandReceive : public CommandReceiveInterface { -public: - CommandReceive(); - virtual ~CommandReceive(); - - void registerAudiomanagerCore(AudioManagerCore* core); - - void startupInterface(); - void stop(); - connection_t connect(source_t source, sink_t sink); - connection_t disconnect(source_t source, source_t sink); - std::list<ConnectionType> getListConnections(); - std::list<SinkType> getListSinks(); - std::list<SourceType> getListSources(); - genInt_t interruptRequest(const std::string &SourceName, const std::string &SinkName); - interrupt_t interruptResume(interrupt_t interrupt); - volume_t setVolume(sink_t sink, volume_t volume); -private: - AudioManagerCore* m_core; -}; - -#endif /* COMMANDRECEIVE_H_ */ |