rad  2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ExecutableContent.h
Go to the documentation of this file.
1 /*
2  * scampl4cpp/engine
3  *
4  * Copyright by European Southern Observatory, 2012
5  * All rights reserved
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20  * 02111-1307 USA.
21  */
22 
23 /*
24  * $Id: ExecutableContent.h 1061 2015-07-13 15:03:59Z landolfa $
25  */
26 
27 #ifndef SCXML4CPP_EXECUTABLECONTENT_H
28 #define SCXML4CPP_EXECUTABLECONTENT_H
29 
30 #ifndef __cplusplus
31 #error This is a C++ include file and cannot be used from plain C
32 #endif
33 
34 #ifndef ACTION_H
35 #include "scxml4cpp/Action.h"
36 #endif
37 
38 #ifdef CONTEXT_H
39 #include "scxml4cpp/Context.h"
40 #endif
41 
42 #include <list>
43 
44 namespace scxml4cpp {
45 
47 {
48  public:
51 
52  std::list<Action*>& getActions();
53  void addAction(Action*);
54  void execute(Context*);
55  bool evaluate(Context*);
56 
57  private:
58  std::list<Action*> mActions;
59 
61  ExecutableContent& operator= (const ExecutableContent&);
62 
63 };
64 
65 } // namespace scxml4cpp
66 
67 #endif // SCXML4CPP_EXECUTABLECONTENT_H
ExecutableContent()
Definition: ExecutableContent.cpp:33
Definition: Action.h:40
Definition: Context.h:43
Definition: ExecutableContent.h:46
void addAction(Action *)
Definition: ExecutableContent.cpp:49
void execute(Context *)
Definition: ExecutableContent.cpp:63
~ExecutableContent()
Definition: ExecutableContent.cpp:38
std::list< Action * > & getActions()
Definition: ExecutableContent.cpp:43
bool evaluate(Context *)
Definition: ExecutableContent.cpp:78