00001 /******************************************************************************* 00002 * PainterPlugin.cpp 00003 * 00004 * (C) 2007 AG Aktives Sehen <agas@uni-koblenz.de> 00005 * Universitaet Koblenz-Landau 00006 * 00007 * Additional information: 00008 * $Id: $ 00009 *******************************************************************************/ 00010 00011 #include "PainterPlugin.h" 00012 00013 #define THIS PainterPlugin 00014 00015 THIS::THIS() : QObject() 00016 { 00017 m_Visible = true; 00018 m_Name = "Unnamed Painter Plugin"; 00019 m_NeedsRedraw = false; 00020 m_ParentWidget = 0; 00021 } 00022 00023 THIS::~THIS() 00024 { 00025 } 00026 00027 #undef THIS