source: flair-src/trunk/lib/FlairCore/src/Buffer.cpp@ 121

Last change on this file since 121 was 121, checked in by Sanahuja Guillaume, 7 years ago

modifs camera

File size: 775 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// created: 2016/12/22
6// filename: Buffer.cpp
7//
8// author: Guillaume Sanahuja
9// Copyright Heudiasyc UMR UTC/CNRS 7253
10//
11// version: $Id: $
12//
13// purpose: Class defining a buffer, not for real time use
14//
15/*********************************************************************/
16
17#include "Buffer.h"
18
19using std::string;
20
21namespace flair {
22namespace core {
23
24Buffer::Buffer(const Object *parent, string name)
25 : io_data(parent, name, 1), dataType() {
26
27}
28
29Buffer::~Buffer() {
30
31}
32
33void Buffer::CopyDatas(char *dst) const { Warn("non implementé\n"); }
34
35} // end namespace core
36} // end namespace flair
Note: See TracBrowser for help on using the repository browser.