Last change
on this file since 1310 was
907,
checked in by Maciej Komosinski, 5 years ago
|
Code formatting
|
-
Property svn:eol-style set to
native
|
File size:
778 bytes
|
Rev | Line | |
---|
[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[109] | 4 | |
---|
| 5 | #ifndef _NEUROIMPLCHANNELS_H |
---|
| 6 | #define _NEUROIMPLCHANNELS_H |
---|
| 7 | |
---|
| 8 | #include <frams/neuro/neuroimpl.h> |
---|
| 9 | |
---|
[791] | 10 | class NI_Channelize : public NeuroImpl |
---|
[109] | 11 | { |
---|
| 12 | public: |
---|
[907] | 13 | NeuroImpl* makeNew() { return new NI_Channelize(); } // for NeuroFactory |
---|
[791] | 14 | void go(); |
---|
[109] | 15 | }; |
---|
| 16 | |
---|
[791] | 17 | class NI_ChMux : public NeuroImpl |
---|
[109] | 18 | { |
---|
| 19 | public: |
---|
[907] | 20 | NeuroImpl* makeNew() { return new NI_ChMux(); } // for NeuroFactory |
---|
[791] | 21 | void go(); |
---|
[109] | 22 | }; |
---|
| 23 | |
---|
| 24 | extern ParamEntry NI_ChSel_tab[]; |
---|
| 25 | |
---|
[791] | 26 | class NI_ChSel : public NeuroImpl |
---|
[109] | 27 | { |
---|
| 28 | public: |
---|
[791] | 29 | int ch; // channel |
---|
| 30 | NI_ChSel() :ch(0) { paramentries = NI_ChSel_tab; } |
---|
[907] | 31 | NeuroImpl* makeNew() { return new NI_ChSel(); } // for NeuroFactory |
---|
[791] | 32 | void go(); |
---|
[109] | 33 | }; |
---|
| 34 | |
---|
| 35 | |
---|
| 36 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.