Changeset 907 for cpp/frams/neuro/impl/neuroimpl-channels.h
- Timestamp:
- 02/04/20 19:18:52 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/neuro/impl/neuroimpl-channels.h
r791 r907 11 11 { 12 12 public: 13 NeuroImpl* makeNew() { return new NI_Channelize(); } // for NeuroFactory13 NeuroImpl* makeNew() { return new NI_Channelize(); } // for NeuroFactory 14 14 void go(); 15 15 }; … … 18 18 { 19 19 public: 20 NeuroImpl* makeNew() { return new NI_ChMux(); } // for NeuroFactory20 NeuroImpl* makeNew() { return new NI_ChMux(); } // for NeuroFactory 21 21 void go(); 22 22 }; … … 29 29 int ch; // channel 30 30 NI_ChSel() :ch(0) { paramentries = NI_ChSel_tab; } 31 NeuroImpl* makeNew() { return new NI_ChSel(); } // for NeuroFactory31 NeuroImpl* makeNew() { return new NI_ChSel(); } // for NeuroFactory 32 32 void go(); 33 33 }; … … 35 35 36 36 #endif 37
Note: See TracChangeset
for help on using the changeset viewer.