summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/slang-replay/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/slang-replay/main.cpp b/tools/slang-replay/main.cpp
new file mode 100644
index 000000000..7f042f91b
--- /dev/null
+++ b/tools/slang-replay/main.cpp
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <replay/recordFile-processor.h>
+#include <replay/decoder-consumer.h>
+
+int main(int argc, char *argv[])
+{
+ // TODO: This is just a place holder binary
+ SlangRecord::RecordFileProcessor recordFileProcessor("input.capture");
+ return 0;
+}