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

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

flaircore

File size: 722 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 DataPlot_impl.h
7 * \brief Classe de base pour les gprahes
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2013/04/10
10 * \version 4.0
11 */
12
13#ifndef DATAPLOT_IMPL_H
14#define DATAPLOT_IMPL_H
15
16#include <vector>
17
18namespace flair
19{
20 namespace core
21 {
22 class IODataElement;
23 }
24}
25
26/*! \class DataPlot_impl
27* \brief Classe de base pour les graphes
28*
29*/
30class DataPlot_impl
31{
32 public:
33 DataPlot_impl();
34 ~DataPlot_impl();
35
36 std::vector<const flair::core::IODataElement*> tosend;
37};
38
39#endif // DATAPLOT_IMPL_H
Note: See TracBrowser for help on using the repository browser.