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

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

sources reformatted with flair-format-dir script

File size: 677 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 {
19namespace core {
20class IODataElement;
21}
22}
23
24/*! \class DataPlot_impl
25* \brief Classe de base pour les graphes
26*
27*/
28class DataPlot_impl {
29public:
30 DataPlot_impl();
31 ~DataPlot_impl();
32
33 std::vector<const flair::core::IODataElement *> tosend;
34};
35
36#endif // DATAPLOT_IMPL_H
Note: See TracBrowser for help on using the repository browser.