00001 #ifndef FDO_SqlServerOVPROPERTYMAPPINGRCONCRETE_H
00002 #define FDO_SqlServerOVPROPERTYMAPPINGRCONCRETE_H
00003 /*
00004 * Copyright (C) 2004-2008 Autodesk, Inc.
00005 *
00006 * This library is free software; you can redistribute it and/or
00007 * modify it under the terms of version 2.1 of the GNU Lesser
00008 * General Public License as published by the Free Software Foundation.
00009 *
00010 * This library is distributed in the hope that it will be useful,
00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00013 * Lesser General Public License for more details.
00014 *
00015 * You should have received a copy of the GNU Lesser General Public
00016 * License along with this library; if not, write to the Free Software
00017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00018 *
00019 */
00020
00021 #include <Rdbms/Override/SQLServerSpatial/SqlServerOv.h>
00022 #include <Rdbms/Override/SQLServerSpatial/SqlServerOvPropertyMappingRelation.h>
00023
00024 /// \brief
00025 /// Concrete class defining the physical schema overrides for the Concrete type object
00026 /// property mapping. Under the Concrete mapping type, each object property is kept in its own
00027 /// table.
00028 class FdoSqlServerOvPropertyMappingConcrete : public FdoSqlServerOvPropertyMappingRelation, public FdoRdbmsOvPropertyMappingConcrete
00029 {
00030
00031 public:
00032 /// \brief
00033 /// Constructs a default of an FdoSqlServerOvPropertyMappingConcrete
00034 ///
00035 /// \return
00036 /// Returns FdoSqlServerOvPropertyMappingConcrete
00037 ///
00038 FDOSQLSERVER_OV_API static FdoSqlServerOvPropertyMappingConcrete* Create();
00039
00040 protected:
00041 FdoSqlServerOvPropertyMappingConcrete();
00042 virtual ~FdoSqlServerOvPropertyMappingConcrete();
00043 virtual void Dispose();
00044
00045 private:
00046 };
00047
00048 /// \brief
00049 /// FdoSqlServerOvPropertyMappingConcreteP is a FdoPtr on FdoSqlServerOvPropertyMappingConcrete, provided for convenience.
00050 typedef FdoPtr<FdoSqlServerOvPropertyMappingConcrete> FdoSqlServerOvPropertyMappingConcreteP;
00051
00052 #endif
00053
00054