Changeset b53a7e
- Timestamp:
- Feb 18, 2010, 10:59:29 AM (16 years ago)
- Children:
- 536380, a5471c
- Parents:
- 120f8b
- git-author:
- Tillmann Crueger <crueger@…> (02/17/10 17:07:35)
- git-committer:
- Tillmann Crueger <crueger@…> (02/18/10 10:59:29)
- Location:
- molecuilder/src
- Files:
-
- 2 added
- 5 edited
-
Actions/Process.cpp (added)
-
Actions/Process.hpp (added)
-
Actions/small_actions.hpp (modified) (3 diffs)
-
Makefile.am (modified) (1 diff)
-
World.cpp (modified) (1 diff)
-
builder.cpp (modified) (2 diffs)
-
helpers.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/small_actions.hpp
r120f8b rb53a7e 1 1 // All rather small Actions should go into this file for simplicities sake 2 2 3 #ifndef _SMALL_ACTIONS_HPP 4 #define _SMALL_ACTIONS_HPP 5 3 6 #include "Actions/Action.hpp" 4 7 #include "Actions/Process.hpp" 5 8 6 9 class MoleculeListClass; … … 9 12 public: 10 13 ChangeMoleculeNameAction(MoleculeListClass*); 11 ~ChangeMoleculeNameAction();14 virtual ~ChangeMoleculeNameAction(); 12 15 13 16 void call(); … … 21 24 static char NAME[]; 22 25 }; 26 27 #endif // _SMALL_ACTIONS_HPP -
molecuilder/src/Makefile.am
r120f8b rb53a7e 8 8 ANALYSISHEADER = analysis_bonds.hpp analysis_correlation.hpp 9 9 10 ACTIONSSOURCE = Actions/Action.cpp Actions/ MethodAction.cpp Actions/ActionSequence.cpp Actions/MakroAction.cpp Actions/ErrorAction.cpp Actions/small_actions.cpp Actions/ActionRegistry.cpp11 ACTIONSHEADER = Actions/Action.hpp Actions/ MethodAction.hpp Actions/ActionSequence.hpp Actions/MakroAction.hpp Actions/ErrorAction.hpp Actions/small_actions.hpp Actions/ActionRegistry.hpp10 ACTIONSSOURCE = Actions/Action.cpp Actions/Process.cpp Actions/MethodAction.cpp Actions/ActionSequence.cpp Actions/MakroAction.cpp Actions/ErrorAction.cpp Actions/small_actions.cpp Actions/ActionRegistry.cpp 11 ACTIONSHEADER = Actions/Action.hpp Actions/Process.hpp Actions/MethodAction.hpp Actions/ActionSequence.hpp Actions/MakroAction.hpp Actions/ErrorAction.hpp Actions/small_actions.hpp Actions/ActionRegistry.hpp 12 12 13 13 PATTERNSOURCE = Patterns/Observer.cpp -
molecuilder/src/World.cpp
r120f8b rb53a7e 59 59 periode(new periodentafel), 60 60 molecules_deprecated(new MoleculeListClass) 61 {} 61 { 62 molecules_deprecated->signOn(this); 63 } 62 64 63 65 World::~World() -
molecuilder/src/builder.cpp
r120f8b rb53a7e 2166 2166 2167 2167 void cleanUp(config *configuration){ 2168 UIFactory::purgeInstance(); 2168 2169 World::destroy(); 2169 2170 delete(configuration); … … 2175 2176 logger::purgeInstance(); 2176 2177 errorLogger::purgeInstance(); 2177 UIFactory::purgeInstance();2178 2178 ActionRegistry::purgeRegistry(); 2179 2179 } -
molecuilder/src/helpers.hpp
r120f8b rb53a7e 187 187 }; 188 188 189 189 #define PLURAL_S(v) (((v)==1)?"":"s") 190 190 191 191 #endif /*HELPERS_HPP_*/
Note:
See TracChangeset
for help on using the changeset viewer.
