Last change
on this file since 336 was 282, checked in by Marek Kurdej, 11 years ago |
Minor: 2013 -> 2014 in licenses.
|
File size:
1.0 KB
|
Rev | Line | |
---|
[216] | 1 | // %pacpus:license{
|
---|
| 2 | // This file is part of the PACPUS framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
| 4 | // %pacpus:license}
|
---|
| 5 | /// @file
|
---|
| 6 | /// @date created @CURRENT_DATETIME@
|
---|
| 7 | /// @author @USERNAME@ <firstname.surname@utc.fr>
|
---|
[282] | 8 | /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2014. All rights reserved.
|
---|
[216] | 9 | /// @version $Id: $
|
---|
| 10 | ///
|
---|
[217] | 11 | /// @todo Brief description of @PACPUS_COMPONENT_NAME@Impl.h.
|
---|
[216] | 12 | ///
|
---|
[217] | 13 | /// @todo Detailed description of @PACPUS_COMPONENT_NAME@Impl.h.
|
---|
[216] | 14 |
|
---|
| 15 | #ifndef @PACPUS_COMPONENT_NAME_CAPS@IMPL_H
|
---|
| 16 | #define @PACPUS_COMPONENT_NAME_CAPS@IMPL_H
|
---|
| 17 |
|
---|
| 18 | #include "@PACPUS_COMPONENT_NAME@.h"
|
---|
| 19 |
|
---|
| 20 | namespace pacpus
|
---|
| 21 | {
|
---|
| 22 |
|
---|
| 23 | class @PACPUS_COMPONENT_NAME@::Impl
|
---|
| 24 | : public QObject
|
---|
| 25 | {
|
---|
| 26 | Q_OBJECT
|
---|
| 27 |
|
---|
| 28 | public:
|
---|
| 29 | Impl(@PACPUS_COMPONENT_NAME@* parent);
|
---|
| 30 |
|
---|
| 31 | void start();
|
---|
| 32 | void stop();
|
---|
| 33 | //void processInput(InputType const& input);
|
---|
| 34 |
|
---|
| 35 | public Q_SLOTS:
|
---|
| 36 | //void outputData();
|
---|
| 37 |
|
---|
| 38 | private:
|
---|
| 39 |
|
---|
| 40 | private:
|
---|
| 41 | @PACPUS_COMPONENT_NAME@* mParent;
|
---|
| 42 | };
|
---|
| 43 |
|
---|
| 44 | } // namespace pacpus
|
---|
| 45 |
|
---|
| 46 | #endif // @PACPUS_COMPONENT_NAME_CAPS@IMPL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.