source: flair-src/trunk/lib/FlairCore/src/unexported/SendData_impl.h@ 2

Last change on this file since 2 was 2, checked in by Sanahuja Guillaume, 8 years ago

flaircore

File size: 718 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
19class SendData_impl;
20
21/*! \class SendData_impl
22* \brief Base class for sending datas to ground station
23*
24*/
25class SendData_impl
26{
27 public:
28 SendData_impl();
29 ~SendData_impl();
30 bool is_enabled;
31 size_t send_size;
32 uint16_t send_period;
33};
34
35#endif // SENDDATA_IMPL_H
Note: See TracBrowser for help on using the repository browser.