Changeset 193 in pacpusframework for trunk/src/_NewComponent/NewComponent.cpp.in


Ignore:
Timestamp:
Oct 24, 2013, 3:53:36 PM (11 years ago)
Author:
Marek Kurdej
Message:

Minor: NewComponent modifications: added addInputs, addOutputs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/_NewComponent/NewComponent.cpp.in

    r192 r193  
    3232}
    3333
    34 //////////////////////////////////////////////////////////////////////////
    3534@PACPUS_COMPONENT_NAME@::~@PACPUS_COMPONENT_NAME@()
    3635{
    3736    LOG_TRACE("destructor");
     37}
     38
     39//////////////////////////////////////////////////////////////////////////
     40void @PACPUS_COMPONENT_NAME@::addInputs()
     41{
     42    //addInput<InputType, @PACPUS_COMPONENT_NAME@>("input-name", &@PACPUS_COMPONENT_NAME@::processInput);
     43}
     44
     45void @PACPUS_COMPONENT_NAME@::addOutputs()
     46{
     47    //addOutput<OutputType, @PACPUS_COMPONENT_NAME@>("output-name");
    3848}
    3949
     
    4353}
    4454
    45 //////////////////////////////////////////////////////////////////////////
    4655void @PACPUS_COMPONENT_NAME@::stopActivity()
    4756{
Note: See TracChangeset for help on using the changeset viewer.