Changeset 216 in pacpusframework for trunk/src/_NewComponent/NewComponent.h.in


Ignore:
Timestamp:
11/08/13 12:20:22 (11 years ago)
Author:
Marek Kurdej
Message:

Modified: NewComponent: using pimpl to separate interface from implementation.

File:
1 edited

Legend:

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

    r194 r216  
    2020#include <Pacpus/kernel/ComponentBase.h>
    2121
     22#include <boost/scoped_ptr.hpp>
    2223#include <QObject>
    2324
    24 namespace pacpus {
     25namespace pacpus
     26{
    2527
    2628class @PACPUS_COMPONENT_NAME_CAPS@_API @PACPUS_COMPONENT_NAME@
     
    4951   
    5052private:
    51     //void processInput(const InputType & input);
     53    //void processInput(InputType const& input);
    5254
    5355private:
     56    struct Impl;
     57    boost::scoped_ptr<Impl> mImpl;
    5458};
    5559
     
    5761
    5862#endif // @PACPUS_COMPONENT_NAME_CAPS@_H
    59 
Note: See TracChangeset for help on using the changeset viewer.