- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineDialog.hpp
r104524 r84c494 34 34 virtual void queryAtom(const char*,atom**, std::string = ""); 35 35 virtual void queryMolecule(const char*,molecule**,std::string = ""); 36 virtual void queryVector(const char*,Vector *, const double * const,bool, std::string = "");37 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 = ""); 38 38 virtual void queryElement(const char*, std::vector<element *> *, std::string = ""); 39 39 … … 91 91 class VectorCommandLineQuery : public Dialog::VectorQuery { 92 92 public: 93 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 = ""); 94 94 virtual ~VectorCommandLineQuery(); 95 95 virtual bool handle(); … … 98 98 class BoxCommandLineQuery : public Dialog::BoxQuery { 99 99 public: 100 BoxCommandLineQuery(std::string title, double ** const_cellSize, std::string _description = "");100 BoxCommandLineQuery(std::string title,Box* _cellSize, std::string _description = ""); 101 101 virtual ~BoxCommandLineQuery(); 102 102 virtual bool handle();
Note:
See TracChangeset
for help on using the changeset viewer.