Ignore:
Timestamp:
Jan 7, 2010, 2:46:34 PM (16 years ago)
Author:
Tillmann Crueger <crueger@…>
Children:
d97af9
Parents:
34ff5e6
Message:

Added a central registry that allows access to actions by name.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/unittests/ActionSequenceTest.cpp

    r34ff5e6 r3e8325  
    2626{
    2727public:
    28   canUndoActionStub(){}
     28  canUndoActionStub(): Action("canUndoActionStub",false){}
    2929  virtual ~canUndoActionStub(){}
    3030
     
    3939{
    4040public:
    41   cannotUndoActionStub(){}
     41  cannotUndoActionStub() : Action("cannotUndoActionStub",false){}
    4242  virtual ~cannotUndoActionStub(){}
    4343
     
    5353public:
    5454  wasCalledActionStub() :
     55      Action("wasCalledActionStub",false),
    5556      called(false)
    5657  {}
Note: See TracChangeset for help on using the changeset viewer.