forked from ChrisVeigl/BrainBay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ob_and.h
46 lines (28 loc) · 1.04 KB
/
ob_and.h
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
35
36
37
38
39
40
41
42
43
44
45
46
/* -----------------------------------------------------------------------------
BrainBay - Version 1.7, GPL 2003-2010
MODULE: OB_AND.H
Authors: Jeremy Wilkerson, Chris Veigl
This Object performs the AND-operation on it's two Input-Values and presents the
result at the output-port. FALSE it represented by the constant INVALID_VALUE, TRUE
is represented by the constand TRUE_VALUE (def: 512.0f )
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; See the
GNU General Public License for more details.
-------------------------------------------------------------------------------------*/
#include "brainBay.h"
class ANDOBJ : public BASE_CL
{
protected:
float input1, input2;
public:
int binary;
int output_one;
ANDOBJ(int num);
void make_dialog(void);
void load(HANDLE hFile);
void save(HANDLE hFile);
void incoming_data(int port, float value);
void work(void);
~ANDOBJ();
};