summaryrefslogtreecommitdiff
path: root/orkbasecxx/AudioTape.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-07-05 01:59:32 +0000
committerHenri Herscher <henri@oreka.org>2006-07-05 01:59:32 +0000
commitc27745d1b387606b7e1a5869b7fe4b566410720d (patch)
tree978a3e5176ff6db2f6b0856d8031e662b68ff03d /orkbasecxx/AudioTape.h
parent0d758fbcf5a581ca5909245cef65c00652219283 (diff)
* Tape processor interface becomes usable and used
* Reporting and BatchProcessing become "standard" tape processors * Imediate processing kicks off the tape processor chain * Object now references Serializer * ConfigManager singleton not an ACE singleton anymore because ACE singletons are not unique across DLL boundaries. git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@296 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/AudioTape.h')
-rw-r--r--orkbasecxx/AudioTape.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/orkbasecxx/AudioTape.h b/orkbasecxx/AudioTape.h
index c335deb..cb0eaea 100644
--- a/orkbasecxx/AudioTape.h
+++ b/orkbasecxx/AudioTape.h
@@ -21,7 +21,8 @@
#include <queue>
#include "AudioCapture.h"
#include "audiofile/AudioFile.h"
-#include "messages/Message.h"
+#include "messages/TapeMsg.h"
+
class DLL_IMPORT_EXPORT_ORKBASE AudioTapeDescription : public Object
{
@@ -75,6 +76,7 @@ public:
AudioFileRef GetAudioFileRef();
bool IsReadyForBatchProcessing();
+
CStdString m_portId;
CStdString m_localParty;
CStdString m_localEntryPoint;
@@ -85,6 +87,9 @@ public:
time_t m_duration;
CStdString m_localIp;
CStdString m_remoteIp;
+
+ TapeResponseRef m_tapeResponse;
+
private:
void GenerateFilePathAndIdentifier();