Changeset 193 in pacpusframework for trunk/src/_NewComponent/NewComponent.h.in
- Timestamp:
- Oct 24, 2013, 3:53:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/_NewComponent/NewComponent.h.in
r192 r193 35 35 36 36 /// Starts the component 37 virtual void startActivity() ;37 virtual void startActivity() /* override */; 38 38 /// Stops the component 39 virtual void stopActivity() ;39 virtual void stopActivity() /* override */; 40 40 /// Configures components 41 virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config) ;41 virtual ComponentBase::COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config) /* override */; 42 42 43 43 //public Q_SLOTS: 44 44 protected: 45 /// Adds component inputs 46 virtual void addInputs() /* override */; 47 /// Adds component outputs 48 virtual void addOutputs() /* override */; 49 50 private: 51 //void processInput(const InputType & input); 52 45 53 private: 46 54 };
Note:
See TracChangeset
for help on using the changeset viewer.