lib refactoring

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@4576 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2006-01-08 01:31:04 +00:00
parent 9012602d3f
commit 1a17f6961f

View File

@ -1,36 +0,0 @@
/***************************************************************************
qgsproviderextentcalcevent.cpp - Notification that the exact extent
of a layer has been calculated.
-------------------
begin : Feb 1, 2005
copyright : (C) 2005 by Brendan Morley
email : morb at ozemail dot com dot au
***************************************************************************/
/***************************************************************************
* *
* 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 "qgsproviderextentcalcevent.h"
//Added by qt3to4:
#include <QCustomEvent>
QgsProviderExtentCalcEvent::QgsProviderExtentCalcEvent( QgsRect* layerExtent )
: QCustomEvent( QGis::ProviderExtentCalcEvent ),
le( layerExtent )
{
// NO-OP
}
QgsRect* QgsProviderExtentCalcEvent::layerExtent() const
{
return le;
}