/* base clase for X11 images (stores important parameters and dither pic) Copyright (C) 2000 Martin Vogt This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation. For more information look at the file COPYRIGHT in this package */ #include "imageBase.h" #include using namespace std; ImageBase::ImageBase() { identifier = NULL; } ImageBase::~ImageBase() { if (identifier != NULL) delete [] identifier; } void ImageBase::init(XWindow* xWindow, YUVPicture*) { cout << "direct virtual call: ImageBase::init "<