source: flair-src/trunk/lib/FlairCore/src/io_data.cpp@ 93

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

gps

File size: 1.5 KB
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// created: 2012/03/21
6// filename: io_data.cpp
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Abstract class for data types
14//
15//
16/*********************************************************************/
17
18#include "io_data.h"
19#include "io_data_impl.h"
20
21using std::string;
22
23namespace flair {
24namespace core {
25
26DummyType dummyType;
27FloatType floatType;
28DoubleType doubleType;
29SignedIntegerType Int8Type(8);
30SignedIntegerType Int16Type(16);
31UnsignedIntegerType UInt8Type(8);
32UnsignedIntegerType UInt16Type(16);
33
34io_data::io_data(const Object *parent, string name, int n)
35 : Mutex(parent, name) {
36 pimpl_ = new io_data_impl(this, n);
37}
38
39io_data::~io_data() { delete pimpl_; }
40
41void io_data::AppendLogDescription(string description,
42 DataType const &datatype) {
43 pimpl_->AppendLogDescription(description, datatype);
44}
45
46void io_data::SetDataTime(Time time) {
47 GetMutex();
48 pimpl_->time = time;
49 ReleaseMutex();
50}
51
52Time io_data::DataTime(void) const {
53 Time tmp;
54 GetMutex();
55 tmp = pimpl_->time;
56 ReleaseMutex();
57 return tmp;
58}
59
60const io_data *io_data::Prev(int n) const {
61 if (n > 0)
62 return prev->Prev(n - 1);
63 else
64 return this;
65}
66
67void io_data::SetPtrToCircle(void **ptr) { pimpl_->circle_ptr = ptr; }
68
69} // end namespace core
70} // end namespace flair
Note: See TracBrowser for help on using the repository browser.