]> git.tdb.fi Git - libs/datafile.git/blobdiff - tool/tool.h
Add a compile mode to mspdatatool
[libs/datafile.git] / tool / tool.h
index 99e8297770ef9fd6cfd6a6e12c0f9cf0a2e680c4..ab399ad85a43ff58662b93b1cf7bd42b838988e5 100644 (file)
@@ -5,6 +5,9 @@ Copyright © 2008  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
+#ifndef TOOL_H_
+#define TOOL_H_
+
 #include <string>
 #include <msp/core/application.h>
 
@@ -14,9 +17,13 @@ private:
        std::string in_fn;
        std::string out_fn;
        bool binary;
+       bool compile;
+
 public:
        DataTool(int argc, char **argv);
        int main();
 
        static Application::RegApp<DataTool> reg;
 };
+
+#endif