ECF 1.5
Sin.h
1#ifndef Sin_h
2#define Sin_h
3#include "Primitive.h"
4
5namespace Tree {
6namespace Primitives {
7
12class Sin : public Primitive
13{
14public:
15 Sin(void);
16 void execute(void* result, Tree& tree);
17 ~Sin(void);
18};
19
20}
21}
22
23#endif
Base primitive class (Tree genotype).
Definition: Primitive.h:37
Sin function primitive (Tree genotype)
Definition: Sin.h:13
void execute(void *result, Tree &tree)
Execute the primitive.
Definition: Sin.cpp:20
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29