Changes in src/UIElements/Dialog.cpp [e4afb4:8df74d]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/Dialog.cpp
re4afb4 r8df74d 126 126 } 127 127 128 template <> void Dialog::query< constatom *>(const char *token, std::string description)128 template <> void Dialog::query<atom *>(const char *token, std::string description) 129 129 { 130 130 queryAtom(token, description); 131 131 } 132 132 133 template <> void Dialog::query< std::vector< constatom *> >(const char *token, std::string description)133 template <> void Dialog::query< std::vector<atom *> >(const char *token, std::string description) 134 134 { 135 135 queryAtoms(token, description); 136 136 } 137 137 138 template <> void Dialog::query< constmolecule *>(const char *token, std::string description)138 template <> void Dialog::query<molecule *>(const char *token, std::string description) 139 139 { 140 140 queryMolecule(token, description); 141 141 } 142 142 143 template <> void Dialog::query< std::vector< constmolecule *> >(const char *token, std::string description)143 template <> void Dialog::query< std::vector<molecule *> >(const char *token, std::string description) 144 144 { 145 145 queryMolecules(token, description);
Note:
See TracChangeset
for help on using the changeset viewer.