- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineDialog.hpp
rcd8e55 r84c494 31 31 virtual void queryBoolean(const char *, bool *, std::string = ""); 32 32 virtual void queryString(const char*, std::string *, std::string = ""); 33 virtual void queryStrings(const char*, std::vector<std::string> *, std::string = "");34 33 virtual void queryDouble(const char*, double*, std::string = ""); 35 34 virtual void queryAtom(const char*,atom**, std::string = ""); 36 35 virtual void queryMolecule(const char*,molecule**,std::string = ""); 37 virtual void queryVector(const char*,Vector *, const double * const,bool, std::string = "");38 virtual void queryBox(const char*, double ** const, std::string = "");36 virtual void queryVector(const char*,Vector *,bool, std::string = ""); 37 virtual void queryBox(const char*,Box *, std::string = ""); 39 38 virtual void queryElement(const char*, std::vector<element *> *, std::string = ""); 40 39 … … 76 75 }; 77 76 78 class StringsCommandLineQuery : public Dialog::StringsQuery {79 public:80 StringsCommandLineQuery(std::string title, std::vector<std::string> *_target, std::string _description = "");81 virtual ~StringsCommandLineQuery();82 virtual bool handle();83 };84 85 77 class AtomCommandLineQuery : public Dialog::AtomQuery { 86 78 public: … … 99 91 class VectorCommandLineQuery : public Dialog::VectorQuery { 100 92 public: 101 VectorCommandLineQuery(std::string title,Vector *_target, const double *const _cellSize,bool _check, std::string _description = "");93 VectorCommandLineQuery(std::string title,Vector *_target,bool _check, std::string _description = ""); 102 94 virtual ~VectorCommandLineQuery(); 103 95 virtual bool handle(); … … 106 98 class BoxCommandLineQuery : public Dialog::BoxQuery { 107 99 public: 108 BoxCommandLineQuery(std::string title, double ** const_cellSize, std::string _description = "");100 BoxCommandLineQuery(std::string title,Box* _cellSize, std::string _description = ""); 109 101 virtual ~BoxCommandLineQuery(); 110 102 virtual bool handle();
Note:
See TracChangeset
for help on using the changeset viewer.