Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #ifndef __SP_STORYBOARD_CONSEQUENCE_H__
00009 #define __SP_STORYBOARD_CONSEQUENCE_H__
00010
00011
00012 #include "Base/spStandard.hpp"
00013
00014 #ifdef SP_COMPILE_WITH_STORYBOARD
00015
00016
00017 namespace sp
00018 {
00019 namespace tool
00020 {
00021
00022
00023 class SP_EXPORT StoryboardConsequence
00024 {
00025
00026 public:
00027
00028 virtual ~StoryboardConsequence()
00029 {
00030 }
00031
00032
00033
00035 virtual void run() = 0;
00036
00037 protected:
00038
00039 StoryboardConsequence()
00040 {
00041 }
00042
00043 };
00044
00045
00046 }
00047
00048 }
00049
00050
00051 #endif
00052
00053 #endif
00054
00055
00056
00057