Rev | Line | |
---|
[9] | 1 | // %flair:license{
|
---|
[13] | 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
[9] | 4 | // %flair:license}
|
---|
[8] | 5 | /*!
|
---|
| 6 | * \file SimuUsGL.h
|
---|
| 7 | * \brief Class for a simulation us
|
---|
| 8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 9 | * \date 2014/02/07
|
---|
| 10 | * \version 3.4
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | #ifndef SIMULASERGL_H
|
---|
| 14 | #define SIMULASERGL_H
|
---|
| 15 |
|
---|
| 16 | #include <SimuLaser.h>
|
---|
| 17 | #include <SensorGL.h>
|
---|
| 18 |
|
---|
[13] | 19 | namespace flair {
|
---|
| 20 | namespace gui {
|
---|
| 21 | class DoubleSpinBox;
|
---|
| 22 | class Vector3DSpinBox;
|
---|
[8] | 23 | }
|
---|
[13] | 24 | }
|
---|
[8] | 25 |
|
---|
[13] | 26 | namespace flair {
|
---|
| 27 | namespace simulator {
|
---|
| 28 | class Model;
|
---|
[8] | 29 | }
|
---|
[13] | 30 | }
|
---|
[8] | 31 |
|
---|
[13] | 32 | namespace flair {
|
---|
| 33 | namespace sensor {
|
---|
| 34 | /*! \class SimuUsGL
|
---|
| 35 | * \brief Class for a simulation us
|
---|
| 36 | *
|
---|
| 37 | */
|
---|
| 38 | class SimuLaserGL : public SimuLaser, public SensorGL {
|
---|
| 39 | public:
|
---|
[50] | 40 | SimuLaserGL(const simulator::Model *parent, std::string name, uint32_t modelId,uint32_t deviceId);
|
---|
[13] | 41 | ~SimuLaserGL();
|
---|
[8] | 42 |
|
---|
[13] | 43 | private:
|
---|
| 44 | void UpdateFrom(const core::io_data *data);
|
---|
| 45 | gui::DoubleSpinBox *range;
|
---|
| 46 | gui::Vector3DSpinBox *position, *direction;
|
---|
| 47 | };
|
---|
[8] | 48 | } // end namespace sensor
|
---|
| 49 | } // end namespace flair
|
---|
| 50 | #endif // SIMULASERGL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.