From: Dejan L. <de...@us...> - 2004-05-08 15:09:02
|
Update of /cvsroot/rtk/rtk/src/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15876/src/core Modified Files: Buffer.cpp Log Message: Very small change. Index: Buffer.cpp =================================================================== RCS file: /cvsroot/rtk/rtk/src/core/Buffer.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Buffer.cpp 3 Mar 2004 15:31:09 -0000 1.1 --- Buffer.cpp 8 May 2004 15:08:53 -0000 1.2 *************** *** 32,36 **** ***** * Authors (chronological order): ! * $fname $lname, $email * Contributors (chronological order): * $fname $lname, $email --- 32,36 ---- ***** * Authors (chronological order): ! * Dejan Lekic, de...@nu... (dejan§rtk.cx) * Contributors (chronological order): * $fname $lname, $email *************** *** 44,48 **** namespace Rtk { ! // C/C++ code here }; // Rtk --- 44,60 ---- namespace Rtk { ! Buffer::Buffer(uint element_size, uint size) ! { ! _buffer = new Array(element_size); ! _buffer->SetCount(size); ! _size = size; ! _pos = 0; ! } // Buffer() constructor ! ! Buffer::~Buffer() ! { ! delete _buffer; ! } // ~Buffer() descructor ! }; // Rtk |