// %flair:license{ // This file is part of the Flair framework distributed under the // CECILL-C License, Version 1.0. // %flair:license} // created: 2016/12/22 // filename: Buffer.cpp // // author: Guillaume Sanahuja // Copyright Heudiasyc UMR UTC/CNRS 7253 // // version: $Id: $ // // purpose: Class defining a buffer, not for real time use // /*********************************************************************/ #include "Buffer.h" using std::string; namespace flair { namespace core { Buffer::Buffer(const Object *parent, string name) : io_data(parent, name, 1), dataType() { } Buffer::~Buffer() { } void Buffer::CopyDatas(char *dst) const { Warn("non implementé\n"); } } // end namespace core } // end namespace flair