Changeset c4c113
- Timestamp:
- Mar 17, 2017, 10:11:35 AM (8 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_StructOpt_integration_tests, AutomationFragmentation_failures, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph_documentation, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_ChronosMutex, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, GeometryObjects, Gui_displays_atomic_force_velocity, IndependentFragmentGrids_IntegrationTest, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, PartialCharges_OrthogonalSummation, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, RotateToPrincipalAxisSystem_UndoRedo, StoppableMakroAction, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, Ubuntu_1604_changes, stable
- Children:
- eca0d7
- Parents:
- 917c46
- git-author:
- Frederik Heber <heber@…> (03/17/17 09:47:19)
- git-committer:
- Frederik Heber <heber@…> (03/17/17 10:11:35)
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Specifics/Value_elements.cpp
r917c46 rc4c113 22 22 23 23 /* 24 * Value_elements s.cpp24 * Value_elements.cpp 25 25 * 26 26 * Created on: Jul 18, 2015 -
src/Parameters/Specifics/Value_elements.hpp
r917c46 rc4c113 1 1 /* 2 * Value_element .hpp2 * Value_elements.hpp 3 3 * 4 4 * Created on: Sep 10, 2014 … … 6 6 */ 7 7 8 #ifndef VALUE_ELEMENT _HPP_9 #define VALUE_ELEMENT _HPP_8 #ifndef VALUE_ELEMENTS_HPP_ 9 #define VALUE_ELEMENTS_HPP_ 10 10 11 11 // include config.h … … 19 19 #include "Parameters/Value.hpp" 20 20 21 // This overrides string conversions for the type elementwhich need a specific function call.21 // This overrides string conversions for the type vector<element> which need a specific function call. 22 22 23 23 template <> 24 bool Value< const element *>::isValidAsString(const std::string &_value) const throw(ParameterValidatorException);24 bool Value<std::vector<const element *> >::isValidAsString(const std::string &_value) const throw(ParameterValidatorException); 25 25 26 26 template <> 27 const std::string Value< const element *>::getAsString() const throw(ParameterValueException);27 const std::string Value<std::vector<const element *> >::getAsString() const throw(ParameterValueException); 28 28 29 29 template <> 30 void Value< const element *>::setAsString(const std::string &_value) throw(ParameterException);30 void Value<std::vector<const element *> >::setAsString(const std::string &_value) throw(ParameterException); 31 31 32 32 33 #endif /* VALUE_ELEMENT _HPP_ */33 #endif /* VALUE_ELEMENTS_HPP_ */ -
src/Parameters/Value.hpp
r917c46 rc4c113 118 118 }; 119 119 120 #include "Value_impl.hpp"121 122 120 #include "Specifics/Value_atom.hpp" 123 121 #include "Specifics/Value_element.hpp" 122 #include "Specifics/Value_elements.hpp" 124 123 #include "Specifics/Value_molecule.hpp" 125 124 #include "Specifics/Value_string.hpp" 126 125 126 #include "Value_impl.hpp" 127 127 128 #endif /* VALUE_HPP_ */ -
tests/CodeChecks/testsuite.at
r917c46 rc4c113 45 45 46 46 m4_include(testsuite-action_present_in_userguide.at) 47 48 m4_include(testsuite-specifics_present_in_value_header.at)
Note:
See TracChangeset
for help on using the changeset viewer.