00001 #ifndef FDO_OdbcOVGEOMETRICPROPERTYDEFINITION_H
00002 #define FDO_OdbcOVGEOMETRICPROPERTYDEFINITION_H
00003 //
00004 //
00005 // Copyright (C) 2004-2006 Autodesk, Inc.
00006 //
00007 // This library is free software; you can redistribute it and/or
00008 // modify it under the terms of version 2.1 of the GNU Lesser
00009 // General Public License as published by the Free Software Foundation.
00010 //
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00014 // Lesser General Public License for more details.
00015 //
00016 // You should have received a copy of the GNU Lesser General Public
00017 // License along with this library; if not, write to the Free Software
00018 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00019 //
00020 #include <Rdbms/Override/RdbmsOvGeometricPropertyDefinition.h>
00021 #include <Rdbms/Override/ODBC/OdbcOv.h>
00022 #include <Rdbms/Override/ODBC/OdbcOvPropertyDefinition.h>
00023
00024 /// \brief
00025 /// Concrete class defining physical schema overrides for a geometric property definition.
00026 class FdoOdbcOvGeometricPropertyDefinition : public FdoRdbmsOvGeometricPropertyDefinition, public FdoOdbcOvPropertyDefinition
00027 {
00028 public:
00029 /// \brief
00030 /// Constructs a default of an FdoOdbcOvGeometricPropertyDefinition
00031 ///
00032 /// \return
00033 /// Returns FdoOdbcOvGeometricPropertyDefinition
00034 ///
00035 FDOODBC_OV_API static FdoOdbcOvGeometricPropertyDefinition* Create();
00036
00037 /// \brief
00038 /// Constructs an instance of an FdoOdbcOvGeometricPropertyDefinition using the specified arguments
00039 ///
00040 /// \param name
00041 /// Input name
00042 ///
00043 /// \return
00044 /// Returns FdoOdbcOvGeometricPropertyDefinition
00045 ///
00046 FDOODBC_OV_API static FdoOdbcOvGeometricPropertyDefinition* Create(FdoString* name);
00047
00048 protected:
00049 /// \cond DOXYGEN-IGNORE
00050
00051 FdoOdbcOvGeometricPropertyDefinition();
00052 FdoOdbcOvGeometricPropertyDefinition(FdoString* name);
00053 virtual ~FdoOdbcOvGeometricPropertyDefinition();
00054 virtual void Dispose();
00055 /// \endcond
00056
00057 private:
00058 };
00059
00060 /// \brief
00061 /// FdoOdbcOvGeometricPropertyP is a FdoPtr on FdoOdbcOvGeometricPropertyDefinition, provided for convenience.
00062 typedef FdoPtr<FdoOdbcOvGeometricPropertyDefinition> FdoOdbcOvGeometricPropertyP;
00063
00064 #endif
00065
00066