00001
00002
00003
00004
00005
00006
00007 #ifndef skSTATEMENTSTEPPER_H
00008 #define skSTATEMENTSTEPPER_H
00009
00010 #include "skRValueTable.h"
00011
00017 class CLASSEXPORT skStatementStepper {
00018 public:
00027 virtual bool statementExecuted(const skString& location, int line_num,skiExecutable * obj,skRValueTable& local_vars,int statement_type)=0;
00035 virtual bool compoundStatementExecuted(const skString& location, int line_num,skiExecutable * obj,skRValueTable& local_vars)=0;
00036 };
00037 #endif