-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
65 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#include "ScXmlFsm.hxx" | ||
|
||
#define StatemachineTest_GET_INSTANCE_EVENT_ID(e) e | ||
#define StatemachineTest_GET_STATIC_EVENT_ID(e) EScXmlEvent::e | ||
#define ScXmlTest_GET_INSTANCE_EVENT_ID(e) e | ||
#define ScXmlTest_GET_STATIC_EVENT_ID(e) EScXmlEvent::e | ||
|
||
#include "generated/StatemachineTestInstance.hxx" | ||
#include "generated/ScXmlTestInstance.hxx" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
class IScXmlTestImpl | ||
{ | ||
public: | ||
// Actions | ||
virtual void action(ScXmlTestBase::Event event) = 0; | ||
virtual void action2(ScXmlTestBase::Event event) = 0; | ||
virtual void internalaction(ScXmlTestBase::Event event) = 0; | ||
|
||
// Guards | ||
virtual bool guard(ScXmlTestBase::Event event) = 0; | ||
|
||
// Entry/Exit | ||
virtual void entry() = 0; | ||
virtual void exit() = 0; | ||
}; |
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
...generated/StatemachineTestDeclaration.hxx → test/generated/ScXmlTestDeclaration.hxx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters