summaryrefslogtreecommitdiff
path: root/orkaudio/messages/TapeMsg.h
diff options
context:
space:
mode:
Diffstat (limited to 'orkaudio/messages/TapeMsg.h')
-rw-r--r--orkaudio/messages/TapeMsg.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/orkaudio/messages/TapeMsg.h b/orkaudio/messages/TapeMsg.h
index 9d0ec3f..5365e02 100644
--- a/orkaudio/messages/TapeMsg.h
+++ b/orkaudio/messages/TapeMsg.h
@@ -15,6 +15,7 @@
#define __TAPEMSG_H__
#include "messages/SyncMessage.h"
+#include "messages/ASyncMessage.h"
#include "AudioTape.h"
#define TAPE_MESSAGE_NAME "tape"
@@ -56,5 +57,21 @@ public:
typedef boost::shared_ptr<TapeMsg> TapeMsgRef;
+/** A TapeResponse is a response to TapeMsg
+*/
+class TapeResponse : public SimpleResponseMsg
+{
+public:
+ TapeResponse();
+ void Define(Serializer* s);
+ inline void Validate() {};
+
+ CStdString GetClassName();
+ ObjectRef NewInstance();
+ inline ObjectRef Process() {return ObjectRef();};
+
+ bool m_deleteTape;
+};
+
#endif