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