source: pacpusframework/trunk/src/_NewComponent/NewComponentImpl.h.in@ 217

Last change on this file since 217 was 217, checked in by Marek Kurdej, 11 years ago

Minor: doc.

File size: 1.0 KB
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 - 2013. 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
20namespace pacpus
21{
22
23class @PACPUS_COMPONENT_NAME@::Impl
24 : public QObject
25{
26 Q_OBJECT
27
28public:
29 Impl(@PACPUS_COMPONENT_NAME@* parent);
30
31 void start();
32 void stop();
33 //void processInput(InputType const& input);
34
35public Q_SLOTS:
36 //void outputData();
37
38private:
39
40private:
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.