summaryrefslogtreecommitdiff
path: root/orkbasecxx/OrkTrack.h
diff options
context:
space:
mode:
Diffstat (limited to 'orkbasecxx/OrkTrack.h')
-rw-r--r--orkbasecxx/OrkTrack.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/orkbasecxx/OrkTrack.h b/orkbasecxx/OrkTrack.h
new file mode 100644
index 0000000..33eff4b
--- /dev/null
+++ b/orkbasecxx/OrkTrack.h
@@ -0,0 +1,27 @@
+/*
+ * Oreka -- A media capture and retrieval platform
+ *
+ * Copyright (C) 2005, orecx LLC
+ *
+ * http://www.orecx.com
+ *
+ */
+#ifndef __ORKTRACK_H__
+#define __ORKTRACK_H__ 1
+
+#include "boost/shared_ptr.hpp"
+#include "OrkClient.h"
+
+struct OrkTrackHost {
+ char m_serverHostname[256];
+ int m_serverPort;
+};
+typedef boost::shared_ptr<OrkTrackHost> OrkTrackHostRef;
+
+class DLL_IMPORT_EXPORT_ORKBASE OrkTrack {
+public:
+ static void Initialize();
+ static void Run(void *args);
+};
+
+#endif