- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/TextUI/TextDialog.hpp
r104524 r84c494 31 31 virtual void queryAtom(const char*,atom**,std::string = ""); 32 32 virtual void queryMolecule(const char*,molecule**,std::string = ""); 33 virtual void queryVector(const char*,Vector *, const double * const,bool, std::string = "");34 virtual void queryBox(const char*, double ** const, std::string = "");33 virtual void queryVector(const char*,Vector *,bool, std::string = ""); 34 virtual void queryBox(const char*,Box*, std::string = ""); 35 35 virtual void queryElement(const char*, std::vector<element *> *, std::string = ""); 36 36 … … 88 88 class VectorTextQuery : public Dialog::VectorQuery { 89 89 public: 90 VectorTextQuery(std::string title,Vector *_target, const double *const _cellSize,bool _check, std::string _description = NULL);90 VectorTextQuery(std::string title,Vector *_target,bool _check, std::string _description = NULL); 91 91 virtual ~VectorTextQuery(); 92 92 virtual bool handle(); … … 95 95 class BoxTextQuery : public Dialog::BoxQuery { 96 96 public: 97 BoxTextQuery(std::string title, double ** const_cellSize, std::string _description = NULL);97 BoxTextQuery(std::string title,Box* _cellSize, std::string _description = NULL); 98 98 virtual ~BoxTextQuery(); 99 99 virtual bool handle();
Note:
See TracChangeset
for help on using the changeset viewer.