X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=tool%2Ftool.h;fp=tool%2Ftool.h;h=ab399ad85a43ff58662b93b1cf7bd42b838988e5;hb=52e6bd3e02522f68166c70f83d2ef3d7cf0c15ff;hp=99e8297770ef9fd6cfd6a6e12c0f9cf0a2e680c4;hpb=db9c49893c2a9475cb5efa4a53bc481a5f66231f;p=libs%2Fdatafile.git diff --git a/tool/tool.h b/tool/tool.h index 99e8297..ab399ad 100644 --- a/tool/tool.h +++ b/tool/tool.h @@ -5,6 +5,9 @@ Copyright © 2008 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ +#ifndef TOOL_H_ +#define TOOL_H_ + #include #include @@ -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 reg; }; + +#endif