Line | |
---|
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>
|
---|
8 | /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2014. All rights reserved.
|
---|
9 | /// @version $Id: $
|
---|
10 | ///
|
---|
11 | /// @todo Brief description of @PACPUS_COMPONENT_NAME@Impl.h.
|
---|
12 | ///
|
---|
13 | /// @todo Detailed description of @PACPUS_COMPONENT_NAME@Impl.h.
|
---|
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.