Changeset 90c4460 for molecuilder
- Timestamp:
- Apr 28, 2010, 1:31:57 PM (16 years ago)
- Children:
- 0d111b, 93b12d
- Parents:
- 075729
- Location:
- molecuilder/src
- Files:
-
- 2 added
- 4 edited
-
Actions/Action.cpp (modified) (1 diff)
-
Actions/ActionHistory.cpp (modified) (1 diff)
-
Helpers/MemDebug.cpp (added)
-
Helpers/MemDebug.hpp (added)
-
Makefile.am (modified) (1 diff)
-
builder.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/Actions/Action.cpp
r075729 r90c4460 11 11 #include "Actions/ActionRegistry.hpp" 12 12 #include "Actions/ActionHistory.hpp" 13 #include "Helpers/MemDebug.hpp" 13 14 14 15 using namespace std; 15 16 16 17 // An empty state to indicate success 17 Action::state_ptr Action::success = Action::state_ptr( new ActionState());18 Action::state_ptr Action::failure = Action::state_ptr( new ActionState());18 Action::state_ptr Action::success = Action::state_ptr(Memory::ignore(new ActionState())); 19 Action::state_ptr Action::failure = Action::state_ptr(Memory::ignore(new ActionState())); 19 20 20 21 Action::Action(std::string _name,bool _doRegister) : -
molecuilder/src/Actions/ActionHistory.cpp
r075729 r90c4460 12 12 #include "Patterns/Singleton_impl.hpp" 13 13 #include "Helpers/Assert.hpp" 14 #include "Helpers/MemDebug.hpp" 14 15 15 16 using namespace std; -
molecuilder/src/Makefile.am
r075729 r90c4460 86 86 helpers.cpp \ 87 87 Helpers/Assert.cpp \ 88 Helpers/MemDebug.cpp \ 88 89 info.cpp \ 89 90 leastsquaremin.cpp \ -
molecuilder/src/builder.cpp
r075729 r90c4460 81 81 #include "version.h" 82 82 #include "World.hpp" 83 #include "Helpers/MemDebug.hpp" 83 84 84 85 /********************************************* Subsubmenu routine ************************************/ … … 2552 2553 errorLogger::purgeInstance(); 2553 2554 ActionRegistry::purgeInstance(); 2555 ActionHistory::purgeInstance(); 2554 2556 } 2555 2557 … … 2616 2618 2617 2619 cleanUp(configuration); 2620 2621 Memory::getState(); 2618 2622 return (0); 2619 2623 }
Note:
See TracChangeset
for help on using the changeset viewer.
