blob: 2186973374e0d8f31d6605f00b5010723bf9380e (
plain)
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
|
// Copyright (C) by Josh Blum. See LICENSE.txt for licensing information.
#include <gras/block.hpp>
#include <gras/factory.hpp>
struct MyBlock : gras::Block
{
MyBlock(void):
gras::Block("MyBlock")
{
this->register_call("get_num", &MyBlock::get_num);
}
int get_num(void)
{
return 42;
}
//dummy work
void work(const InputItems &, const OutputItems &){}
};
gras::Block *make_my_block(void)
{
return new MyBlock();
}
GRAS_REGISTER_FACTORY("/tests/my_block", make_my_block)
|