summaryrefslogtreecommitdiff
path: root/orkaudio
diff options
context:
space:
mode:
Diffstat (limited to 'orkaudio')
-rw-r--r--orkaudio/messages/TapeMsg.cpp1
-rw-r--r--orkaudio/messages/TapeMsg.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/orkaudio/messages/TapeMsg.cpp b/orkaudio/messages/TapeMsg.cpp
index 86c86b4..4c212d3 100644
--- a/orkaudio/messages/TapeMsg.cpp
+++ b/orkaudio/messages/TapeMsg.cpp
@@ -28,6 +28,7 @@ void TapeMsg::Define(Serializer* s)
{
CStdString tapeMessageName(TAPE_MESSAGE_NAME);
s->StringValue(OBJECT_TYPE_TAG, tapeMessageName, true);
+ s->StringValue(REC_ID_PARAM, m_recId, true);
s->StringValue(STAGE_PARAM, m_stage, true);
s->StringValue(CAPTURE_PORT_PARAM, m_capturePort, true);
s->IntValue(TIMESTAMP_PARAM, (int&)m_timestamp, true);
diff --git a/orkaudio/messages/TapeMsg.h b/orkaudio/messages/TapeMsg.h
index d127c6d..9d0ec3f 100644
--- a/orkaudio/messages/TapeMsg.h
+++ b/orkaudio/messages/TapeMsg.h
@@ -18,6 +18,7 @@
#include "AudioTape.h"
#define TAPE_MESSAGE_NAME "tape"
+#define REC_ID_PARAM "recid"
#define FILENAME_PARAM "filename"
#define STAGE_PARAM "stage"
#define LOCALPARTY_PARAM "localparty"
@@ -39,6 +40,7 @@ public:
ObjectRef NewInstance();
inline ObjectRef Process() {return ObjectRef();};
+ CStdString m_recId;
CStdString m_stage;
time_t m_timestamp;
CStdString m_fileName;