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

Last change on this file since 15 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

File size: 677 bytes
RevLine 
[2]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]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
[15]18namespace flair {
19namespace core {
20class IODataElement;
[2]21}
[15]22}
[2]23
24/*! \class DataPlot_impl
25* \brief Classe de base pour les graphes
26*
27*/
[15]28class DataPlot_impl {
29public:
30 DataPlot_impl();
31 ~DataPlot_impl();
[2]32
[15]33 std::vector<const flair::core::IODataElement *> tosend;
[2]34};
35
36#endif // DATAPLOT_IMPL_H
Note: See TracBrowser for help on using the repository browser.