OSDN Git Service

3afca1e6b730ecd6d9c3728c384cca3b68a15354
[dennco/denncoCreator.git] / Source / engine / layer1 / TKAxonTerminal.h
1 //  Copyright (c) 2012 Dennco Project
2 //
3 // This program is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 //
17 //  Created by tkawata on 12/11/2011.
18 //
19
20 #ifndef __INCLUDE_TKAXONTERMINAL__
21 #define __INCLUDE_TKAXONTERMINAL__
22
23 class TKAxon;
24 class TKReceptor;
25
26 class TKAxonTerminal
27 {
28 public:
29         TKAxonTerminal(TKAxon *theOwner) : mOwner(theOwner), mTarget(0) {}
30     virtual ~TKAxonTerminal() {}
31
32     void        setTarget(TKReceptor *theReceptor) {mTarget = theReceptor;}
33     void        release(TKReceptor *receptor);
34     
35     bool        isConnected() { return mTarget != 0; }
36     TKAxon*     getOwner() { return mOwner; }
37     TKReceptor* getTarget() { return mTarget; }
38     float       getValue();
39         
40 private:
41         TKAxon      *mOwner;
42         TKReceptor  *mTarget;
43
44 };
45
46 #endif