Ignore:
Timestamp:
05/29/18 16:24:39 (6 years ago)
Author:
Maciej Komosinski
Message:

Code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/neuro/impl/neuroimpl-channels.h

    r286 r791  
    88#include <frams/neuro/neuroimpl.h>
    99
    10 class NI_Channelize: public NeuroImpl
     10class NI_Channelize : public NeuroImpl
    1111{
    1212public:
    13 NeuroImpl* makeNew(){return new NI_Channelize();} // for NeuroFactory
    14 void go();
     13        NeuroImpl* makeNew(){ return new NI_Channelize(); } // for NeuroFactory
     14        void go();
    1515};
    1616
    17 class NI_ChMux: public NeuroImpl
     17class NI_ChMux : public NeuroImpl
    1818{
    1919public:
    20 NeuroImpl* makeNew(){return new NI_ChMux();} // for NeuroFactory
    21 void go();
     20        NeuroImpl* makeNew(){ return new NI_ChMux(); } // for NeuroFactory
     21        void go();
    2222};
    2323
    2424extern ParamEntry NI_ChSel_tab[];
    2525
    26 class NI_ChSel: public NeuroImpl
     26class NI_ChSel : public NeuroImpl
    2727{
    2828public:
    29 int ch; // channel
    30 NI_ChSel():ch(0) {paramentries=NI_ChSel_tab;}
    31 NeuroImpl* makeNew(){return new NI_ChSel();} // for NeuroFactory
    32 void go();
     29        int ch; // channel
     30        NI_ChSel() :ch(0) { paramentries = NI_ChSel_tab; }
     31        NeuroImpl* makeNew(){ return new NI_ChSel(); } // for NeuroFactory
     32        void go();
    3333};
    3434
     
    3636#endif
    3737
    38 
    39 
Note: See TracChangeset for help on using the changeset viewer.