charon-core  0.3.1
GroupObject.h
Go to the documentation of this file.
1 /* Copyright (C) 2012 Gerald Mwangi
2 
3  This file is part of Charon.
4 
5  Charon is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License, or
8  (at your option) any later version.
9 
10  Charon is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with Charon. If not, see <http://www.gnu.org/licenses/>.
17 */
23 #ifndef _GROUPOBJECT_H_
24 #define _GROUPOBJECT_H_
25 
26 #ifdef _MSC_VER
27 #ifdef groupobject_EXPORTS
28 #define groupobject_DECLDIR __declspec(dllexport)
30 #else
31 #define groupobject_DECLDIR __declspec(dllimport)
32 #endif /*Export or import*/
33 #else
34 #define groupobject_DECLDIR
36 #endif
37 
38 #include <charon-core/ParameteredGroupObject.h>
39 
41 
44 public:
47  GroupObject(const std::string& name = "");
48 
49 
50 protected:
52  virtual void execute();
53 };
54 
55 #endif /* _GROUPOBJECT_H_ */
Loads a child workflow and executes it.
Definition: GroupObject.h:43
#define groupobject_DECLDIR
Not needed without MSVC.
Definition: GroupObject.h:35