source: pacpusframework/branches/2.0-beta1/src/TestComponents/test/testComponent1.h@ 94

Last change on this file since 94 was 94, checked in by DHERBOMEZ Gérald, 11 years ago

fix windows

  • Property svn:executable set to *
File size: 1.0 KB
Line 
1/**
2@file
3Purpose: Lidar Detection
4
5@date created 2010-06-03 16:13
6@author Julien Moras
7@version $Id: $
8*/
9
10#ifndef TestComponent1_H
11#define TestComponent1_H
12
13#include <Pacpus/kernel/ComponentBase.h>
14#include <Pacpus/kernel/inputOutputInterface.h>
15
16#include <QThread>
17#include <QImage>
18
19#include <Pacpus/kernel/road_time.h>
20#include <Pacpus/PacpusTools/pacpusStruct.h>
21#include "Pacpus/structure/genericStructures.h"
22
23namespace pacpus {
24
25class TestComponent2;
26
27class TestComponent1
28 : public QThread
29 , public ComponentBase
30{
31 Q_OBJECT
32
33public:
34 static const char * COMPONENT_TYPE;
35
36 TestComponent1(QString name);
37 ~TestComponent1();
38
39 virtual void stopActivity();
40 virtual void startActivity();
41 virtual COMPONENT_CONFIGURATION configureComponent(XmlComponentConfig config);
42
43protected:
44
45 void run();
46
47
48public Q_SLOTS:
49
50
51private:
52 //QThread thread;
53
54
55};
56
57} // namespace pacpus
58
59#endif // TestComponent1_H
Note: See TracBrowser for help on using the repository browser.