00001 //
00002 // Copyright (C) 2006 Refractions Research, Inc.
00003 //
00004 // This library is free software; you can redistribute it and/or
00005 // modify it under the terms of version 2.1 of the GNU Lesser
00006 // General Public License as published by the Free Software Foundation.
00007 //
00008 // This library is distributed in the hope that it will be useful,
00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00011 // Lesser General Public License for more details.
00012 //
00013 // You should have received a copy of the GNU Lesser General Public
00014 // License along with this library; if not, write to the Free Software
00015 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00016 //
00017 #ifndef FDOPOSTGISOVPROPERTYMAPPINGDEFINITION_H
00018 #define FDOPOSTGISOVPROPERTYMAPPINGDEFINITION_H
00019
00020 #include <FdoCommon.h>
00021 #include <Fdo/Xml/Flags.h>
00022 #include <Fdo/Commands/Schema/PhysicalElementMapping.h>
00023 #include <Rdbms/Override/RdbmsOvPropertyMappingDefinition.h>
00024 #include <Rdbms/Override/PostGIS/PostGisOv.h>
00025
00026 /// \brief
00027 /// Abstract class defining the physical schema overrides for object
00028 /// property table mappings.
00029 /// This class is used in PostGIS schema overrides.
00030 ///
00031 class FdoPostGISOvPropertyMappingDefinition :
00032 public virtual FdoRdbmsOvPropertyMappingDefinition
00033 {
00034 public:
00035
00036 protected:
00037
00038 /// Default constructor.
00039 FdoPostGISOvPropertyMappingDefinition();
00040
00041 /// Destructor
00042 virtual ~FdoPostGISOvPropertyMappingDefinition();
00043 };
00044
00045 /// \brief
00046 /// Declaration of smart-pointer type for
00047 /// FdoPostGISOvPropertyMappingDefinition.
00048 /// Provided for convenience.
00049 ///
00050 typedef FdoPtr<FdoPostGISOvPropertyMappingDefinition>
00051 FdoPostGISOvPropertyMappingP;
00052
00053 #endif // FDOPOSTGISOVPROPERTYMAPPINGDEFINITION_H