1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-21 18:57:14 +01:00

added missing file

This commit is contained in:
Vadim Kurland 2009-10-05 00:23:16 +00:00
parent fcd1d808b5
commit 7e89dc968e

View File

@ -0,0 +1,54 @@
/*
Firewall Builder
Copyright (C) 2003 NetCitadel, LLC
Author: Vadim Kurland vadim@fwbuilder.org
$Id: ObjectEditor.h 1537 2009-10-02 00:36:43Z vadim $
This program is free software which we release under the GNU General Public
License. You may redistribute and/or modify this program under the terms
of that license as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To get a copy of the GNU General Public License, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __BASEOBJECTDIALOG_H_
#define __BASEOBJECTDIALOG_H_
#include <QWidget>
#include "fwbuilder/FWObject.h"
class ProjectPanel;
class BaseObjectDialog : public QWidget
{
Q_OBJECT;
protected:
libfwbuilder::FWObject *obj;
bool init;
ProjectPanel *m_project;
public:
BaseObjectDialog(QWidget *parent) : QWidget(parent) {obj = 0; init = false; m_project = NULL;}
virtual ~BaseObjectDialog() {};
void attachToProjectWindow(ProjectPanel *pp) { m_project = pp; }
};
#endif