Update mussa to build on ubuntu 10.04 with qt 4.6.2 +boost 1.40.0.1
[mussa.git] / alg / parse_options.hpp
index f048b8e955a9b5708ea2b28c41e25b36b1545eb6..25405a66c86978a76721aaf93c3ce14f3bbf92eb 100644 (file)
@@ -1,7 +1,8 @@
 #ifndef _PARSE_OPTIONS_H_
 #define _PARSE_OPTIONS_H_
 
-class Mussa;
+#include <string>
+#include <alg/mussa.hpp>
 
 //! collect information about runtime options
 struct MussaOptions 
@@ -10,9 +11,13 @@ struct MussaOptions
   MussaOptions();
 
   //! pointer to our analysis, if its null, feel free to die
-  Mussa *analysis;
+  MussaRef analysis;
+  //! Location of documentation
+  std::string doc_dir;
   //! should we use the gui?
   bool useGUI;
+  //! launch as python
+  bool runAsPythonInterpeter;
 };
 
 //! initialize a mussa analysis from command line arguments