Last change
on this file since 187 was
15,
checked in by Bayard Gildas, 5 years ago
|
sources reformatted with flair-format-dir script
|
File size:
694 bytes
|
Line | |
---|
1 | // %flair:license{ |
---|
2 | // This file is part of the Flair framework distributed under the |
---|
3 | // CECILL-C License, Version 1.0. |
---|
4 | // %flair:license} |
---|
5 | /*! |
---|
6 | * \file SendData_impl.h |
---|
7 | * \brief Base class for sending datas to ground station |
---|
8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253 |
---|
9 | * \date 2012/03/07 |
---|
10 | * \version 4.0 |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef SENDDATA_IMPL_H |
---|
14 | #define SENDDATA_IMPL_H |
---|
15 | |
---|
16 | #include <stddef.h> |
---|
17 | #include <stdint.h> |
---|
18 | |
---|
19 | class SendData_impl; |
---|
20 | |
---|
21 | /*! \class SendData_impl |
---|
22 | * \brief Base class for sending datas to ground station |
---|
23 | * |
---|
24 | */ |
---|
25 | class SendData_impl { |
---|
26 | public: |
---|
27 | SendData_impl(); |
---|
28 | ~SendData_impl(); |
---|
29 | bool is_enabled; |
---|
30 | size_t send_size; |
---|
31 | uint16_t send_period; |
---|
32 | }; |
---|
33 | |
---|
34 | #endif // SENDDATA_IMPL_H |
---|
Note: See
TracBrowser
for help on using the repository browser.