Changes in src/UIElements/Dialog.hpp [94d131:84c494]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Dialog.hpp
r94d131 r84c494 14 14 15 15 class atom; 16 class Box; 16 17 class element; 17 18 class molecule; … … 31 32 virtual void queryAtom(const char*,atom**,std::string = "")=0; 32 33 virtual void queryMolecule(const char*,molecule**, std::string = "")=0; 33 virtual void queryVector(const char*,Vector *, const double *const,bool, std::string = "")=0;34 virtual void queryBox(const char*, double ** const, std::string = "")=0;34 virtual void queryVector(const char*,Vector *,bool, std::string = "")=0; 35 virtual void queryBox(const char*,Box*, std::string = "")=0; 35 36 virtual void queryElement(const char*, std::vector<element *> *, std::string = "")=0; 36 37 … … 148 149 class VectorQuery : public Query { 149 150 public: 150 VectorQuery(std::string title,Vector *_target, const double *const _cellSize,bool _check, std::string _description = "");151 VectorQuery(std::string title,Vector *_target,bool _check, std::string _description = ""); 151 152 virtual ~VectorQuery(); 152 153 virtual bool handle()=0; … … 154 155 protected: 155 156 Vector *tmp; 156 const double *const cellSize;157 157 bool check; 158 158 private: … … 162 162 class BoxQuery : public Query { 163 163 public: 164 BoxQuery(std::string title, double ** const_cellSize, std::string _description = "");164 BoxQuery(std::string title,Box *_cellSize, std::string _description = ""); 165 165 virtual ~BoxQuery(); 166 166 virtual bool handle()=0; 167 167 virtual void setResult(); 168 168 protected: 169 double *tmp;169 double* tmp; 170 170 private: 171 double **target;171 Box* target; 172 172 }; 173 173
Note:
See TracChangeset
for help on using the changeset viewer.