QGIS API Documentation  master-6227475
src/core/qgsfeaturestore.cpp
Go to the documentation of this file.
00001 /***************************************************************************
00002      qgsfeaturestore.cpp
00003      --------------------------------------
00004     Date                 : February 2013
00005     Copyright            : (C) 2013 by Radim Blazek
00006     Email                : radim.blazek@gmail.com
00007  ***************************************************************************
00008  *                                                                         *
00009  *   This program is free software; you can redistribute it and/or modify  *
00010  *   it under the terms of the GNU General Public License as published by  *
00011  *   the Free Software Foundation; either version 2 of the License, or     *
00012  *   (at your option) any later version.                                   *
00013  *                                                                         *
00014  ***************************************************************************/
00015 
00016 #include "qgsfeaturestore.h"
00017 
00018 QgsFeatureStore::QgsFeatureStore( )
00019 {
00020 }
00021 
00022 QgsFeatureStore::QgsFeatureStore( const QgsFeatureStore &rhs )
00023     : mFields( rhs.mFields )
00024     , mCrs( rhs.mCrs )
00025     , mFeatures( rhs.mFeatures )
00026     , mParams( rhs.mParams )
00027 {
00028 }
00029 
00030 QgsFeatureStore::QgsFeatureStore( const QgsFields& fields, const QgsCoordinateReferenceSystem& crs )
00031     : mFields( fields )
00032     , mCrs( crs )
00033 {
00034 }
00035 
00036 QgsFeatureStore::~QgsFeatureStore( )
00037 {
00038 }
00039 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines