-
Notifications
You must be signed in to change notification settings - Fork 7
/
RSI.hpp
executable file
·34 lines (26 loc) · 1.04 KB
/
RSI.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/***************************************************************************
* (c) 2008-2011 Aleksandar Topuzović *
* <aleksandar.topuzovic@fer.hr>, <aleksandar.topuzovic@gmail.com> *
***************************************************************************/
#ifndef RSI_hpp
#define RSI_hpp
#include "beagle/GP.hpp"
#include "sqlite3.h"
#include "Context.hpp"
#include <string>
#ifdef BEAGLE_HAVE_RTTI
#include <typeinfo>
#endif // BEAGLE_HAVE_RTTI
class RSI : public Beagle::GP::Primitive {
public:
typedef Beagle::AllocatorT<RSI,Beagle::GP::Primitive::Alloc> Alloc;
typedef Beagle::PointerT<RSI,Beagle::GP::Primitive::Handle> Handle;
typedef Beagle::ContainerT<RSI,Beagle::GP::Primitive::Bag> Bag;
explicit RSI();
virtual ~RSI() { }
#ifdef BEAGLE_HAVE_RTTI
virtual const std::type_info* getReturnType(Beagle::GP::Context& ioContext) const;
#endif // BEAGLE_HAVE_RTTI
virtual void execute(Beagle::GP::Datum& outDatum, Beagle::GP::Context& ioContext);
};
#endif // RSI_hpp