From 4829df0a6417b374acb62101be3065a476a59e60 Mon Sep 17 00:00:00 2001 From: timlinux Date: Mon, 23 Feb 2004 23:14:09 +0000 Subject: [PATCH] Resinstated this file but only with constructor and destructor git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@909 c8812cc2-4d05-0410-92ff-de0c093fc19c --- src/qgisinterface.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/qgisinterface.cpp diff --git a/src/qgisinterface.cpp b/src/qgisinterface.cpp new file mode 100644 index 00000000000..1e0266a5745 --- /dev/null +++ b/src/qgisinterface.cpp @@ -0,0 +1,32 @@ +/*************************************************************************** + * qgisinterface.cpp + * Abstract base class for interfaces to functions in QgisApp + * ------------------- + * begin : 2004-02-11 + * copyright : (C) 2004 by Gary E.Sherman + * email : sherman at mrcc.com + * ***************************************************************************/ + +/*************************************************************************** + * * * + * * This program is free software; you can redistribute it and/or modify * + * * it under the terms of the GNU General Public License as published by * + * * the Free Software Foundation; either version 2 of the License, or * + * * (at your option) any later version. * + * * * + * ***************************************************************************/ + /* $Id$ */ + +#include +#include "qgisinterface.h" +#include "qgisapp.h" + +QgisInterface::QgisInterface(QgisApp * _qgis, const char *name):QWidget(_qgis, name) +{ + + +} + +QgisInterface::~QgisInterface() +{ +}