blwidget.cpp

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (C) 2006 by Tomeu Borras Riera                              *
00003  *   tborras@conetxia.com                                                  *
00004  *                                                                         *
00005  *   This program is free software; you can redistribute it and/or modify  *
00006  *   it under the terms of the GNU General Public License as published by  *
00007  *   the Free Software Foundation; either version 2 of the License, or     *
00008  *   (at your option) any later version.                                   *
00009  *                                                                         *
00010  *   This program is distributed in the hope that it will be useful,       *
00011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00013  *   GNU General Public License for more details.                          *
00014  *                                                                         *
00015  *   You should have received a copy of the GNU General Public License     *
00016  *   along with this program; if not, write to the                         *
00017  *   Free Software Foundation, Inc.,                                       *
00018  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
00019  ***************************************************************************/
00020 
00021 #include "blwidget.h"
00022 
00023 
00025 
00028 PEmpresaBase::PEmpresaBase(EmpresaBase *emp) {
00029   _depura("PEmpresaBase::PEmpresaBase", 0);
00030   m_empresaBase = emp;
00031   _depura("END PEmpresaBase::PEmpresaBase", 0);
00032 }
00033 
00034 
00036 
00038 PEmpresaBase::PEmpresaBase() {
00039   _depura("PEmpresaBase::PEmpresaBases", 0);
00040   m_empresaBase = NULL;
00041   _depura("END PEmpresaBase::PEmpresaBases", 0);
00042 }
00043 
00044 
00046 
00048 PEmpresaBase::~PEmpresaBase() {
00049   _depura("PEmpresaBase::~PEmpresaBase", 0);
00050   _depura("END PEmpresaBase::~PEmpresaBase", 0);
00051 }
00052 
00053 
00055 
00058 void PEmpresaBase::setEmpresaBase(EmpresaBase *emp) {
00059   _depura("PEmpresaBase::setEmpresaBase", 0);
00060   m_empresaBase = emp;
00061   _depura("END PEmpresaBase::setEmpresaBase", 0);
00062 }
00063 
00064 
00066 
00069 EmpresaBase *PEmpresaBase::empresaBase() {
00070   _depura("PEmpresaBase::empresaBase", 0);
00071   return m_empresaBase;
00072   _depura("END PEmpresaBase::empresaBase", 0);
00073 }
00074 
00075 
00077 
00080 QString PEmpresaBase::valorCampo() {
00081         _depura("PEmpresaBase::valorCampo", 2, "debe ser derivado");
00082         return "";
00083 }
00084 
00085 
00087 
00089 void PEmpresaBase::setValorCampo(QString) {
00090         _depura("PEmpresaBase::setValorCampo", 2, "debe ser derivado");
00091 }
00092 
00093 
00097 
00098 
00100 
00104 BLWidget::BLWidget(QWidget *parent, Qt::WFlags f) 
00105   :QWidget(parent, f), PEmpresaBase() {
00106   _depura("BLWidget::BLWidget", 0);
00107   _depura("END BLWidget::BLWidget", 0);
00108 }
00109 
00110 
00112 
00117 BLWidget::BLWidget(EmpresaBase *emp, QWidget *parent, Qt::WFlags f) 
00118   :QWidget(parent, f), PEmpresaBase(emp) {
00119   _depura("BLWidget::BLWidget", 0);
00120   _depura("END BLWidget::BLWidget", 0);
00121 }
00122 
00123 
00125 
00127 BLWidget::~BLWidget() {
00128   _depura("BLWidget::~BLWidget", 0);
00129   _depura("END BLWidget::~BLWidget", 0);
00130 }
00131 

Generated on Sat Dec 15 00:01:20 2007 for BulmaGes by  doxygen 1.5.1