Ignore:
Timestamp:
02/04/20 19:18:52 (5 years ago)
Author:
Maciej Komosinski
Message:

Code formatting

File:
1 edited

Legend:

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

    r791 r907  
    1111{
    1212public:
    13         NeuroImpl* makeNew(){ return new NI_Channelize(); } // for NeuroFactory
     13        NeuroImpl* makeNew() { return new NI_Channelize(); } // for NeuroFactory
    1414        void go();
    1515};
     
    1818{
    1919public:
    20         NeuroImpl* makeNew(){ return new NI_ChMux(); } // for NeuroFactory
     20        NeuroImpl* makeNew() { return new NI_ChMux(); } // for NeuroFactory
    2121        void go();
    2222};
     
    2929        int ch; // channel
    3030        NI_ChSel() :ch(0) { paramentries = NI_ChSel_tab; }
    31         NeuroImpl* makeNew(){ return new NI_ChSel(); } // for NeuroFactory
     31        NeuroImpl* makeNew() { return new NI_ChSel(); } // for NeuroFactory
    3232        void go();
    3333};
     
    3535
    3636#endif
    37 
Note: See TracChangeset for help on using the changeset viewer.