EVOLUTION-MANAGER
Edit File: basePlane.cpp
// // C++ Implementation: basePlane // // Description: // // // Author: Yorn <yorn@gmx.net>, (C) 2009 // // Copyright: See COPYING file that comes with this distribution // // #include "basePlane.h" BasePlane::BasePlane() : width(0), height(0), plane(0) { } BasePlane::BasePlane(uint32 _width, uint32 _height) : width(_width), height(_height), plane(new uint8[_height*_width*4]) { } BasePlane::~BasePlane() { delete[] plane; }