source: cpp/gdk/neuroimpl-channels.h @ 5

Last change on this file since 5 was 5, checked in by sz, 15 years ago

added the GDK (Genotype Development Kit)

File size: 764 bytes
Line 
1// This file is a part of Framsticks GDK library.
2// Copyright (C) 2002-2006  Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.frams.alife.pl/ for further information.
4
5#ifndef _NEUROIMPLCHANNELS_H
6#define _NEUROIMPLCHANNELS_H
7
8#include "neuroimpl.h"
9
10class NI_Channelize: public NeuroImpl
11{
12public:
13NeuroImpl* makeNew(){return new NI_Channelize();} // for NeuroFactory
14void go();
15};
16
17class NI_ChMux: public NeuroImpl
18{
19public:
20NeuroImpl* makeNew(){return new NI_ChMux();} // for NeuroFactory
21void go();
22};
23
24extern ParamEntry NI_ChSel_tab[];
25
26class NI_ChSel: public NeuroImpl
27{
28public:
29int ch; // channel
30NI_ChSel():ch(0) {paramentries=NI_ChSel_tab;}
31NeuroImpl* makeNew(){return new NI_ChSel();} // for NeuroFactory
32void go();
33};
34
35
36#endif
37
38
39
Note: See TracBrowser for help on using the repository browser.