summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/CommandReceive.h
diff options
context:
space:
mode:
authorChristian Mueller <christian@lmuc329619u.(none)>2011-12-08 18:43:48 +0100
committerChristian Mueller <christian@lmuc329619u.(none)>2011-12-08 18:43:48 +0100
commit5773404eb801e27179b7c3c7803a990145d6e94a (patch)
tree4bb9db13fbfb3f72479fd7e6ce342768f299d073 /AudioManagerDaemon/CommandReceive.h
parent9826492b0066d47cfa9ba68d6efe737cc3c317a3 (diff)
downloadaudiomanager-5773404eb801e27179b7c3c7803a990145d6e94a.tar.gz
total rework
no more QT
Diffstat (limited to 'AudioManagerDaemon/CommandReceive.h')
-rw-r--r--AudioManagerDaemon/CommandReceive.h37
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_ */