Autodesk FDO Provider for SQL Server API Reference

SQLServer Provider API

API Reference Autodesk FDO Provider for SQL Server

SqlServerOvGeometricPropertyDefinition.h

Go to the documentation of this file.
00001 #ifndef FDO_SqlServerOVGEOMETRICPROPERTYDEFINITION_H
00002 #define FDO_SqlServerOVGEOMETRICPROPERTYDEFINITION_H
00003 //
00004 //
00005 // (C) Copyright 1990-2005 by Autodesk, Inc.
00006 //
00007 //
00008 //
00009 // By using this code, you are agreeing to the terms
00010 // and conditions of the License Agreement that appeared
00011 // and was accepted upon download or installation
00012 // (or in connection with the download or installation)
00013 // of the Autodesk software in which this code is included.
00014 // All permissions on use of this code are as set forth
00015 // in such License Agreement provided that the above copyright
00016 // notice appears in all authorized copies and that both that
00017 // copyright notice and the limited warranty and
00018 // restricted rights notice below appear in all supporting
00019 // documentation.
00020 //
00021 // AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
00022 // AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
00023 // MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE.  AUTODESK, INC.
00024 // DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
00025 // UNINTERRUPTED OR ERROR FREE.
00026 //
00027 // Use, duplication, or disclosure by the U.S. Government is subject to
00028 // restrictions set forth in FAR 52.227-19 (Commercial Computer
00029 // Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)
00030 // (Rights in Technical Data and Computer Software), as applicable.
00031 //
00032 #include <Rdbms/Override/RdbmsOvGeometricPropertyDefinition.h>
00033 #include <Rdbms/Override/SqlServer/SqlServerOv.h>
00034 #include <Rdbms/Override/SqlServer/SqlServerOvGeometricColumn.h>
00035 #include <Rdbms/Override/SqlServer/SqlServerOvPropertyDefinition.h>
00036 
00037 /// \brief
00038 /// Concrete class defining physical schema overrides for a geometric property definition.
00039 class FdoSqlServerOvGeometricPropertyDefinition : public FdoRdbmsOvGeometricPropertyDefinition, public FdoSqlServerOvPropertyDefinition
00040 {
00041 public:
00042     /// \brief
00043     /// Constructs a default of an FdoSqlServerOvGeometricPropertyDefinition
00044     /// 
00045     /// \return
00046     /// Returns FdoSqlServerOvGeometricPropertyDefinition
00047     /// 
00048     FDOSQLSERVER_OV_API static FdoSqlServerOvGeometricPropertyDefinition* Create();
00049 
00050     /// \brief
00051     /// Constructs an instance of an FdoSqlServerOvGeometricPropertyDefinition using the specified arguments
00052     /// 
00053     /// \param name 
00054     /// Input name
00055     /// 
00056     /// \return
00057     /// Returns FdoSqlServerOvGeometricPropertyDefinition
00058     /// 
00059     FDOSQLSERVER_OV_API static FdoSqlServerOvGeometricPropertyDefinition* Create(FdoString* name);
00060 
00061     /// \brief
00062     /// Gets the column
00063     /// 
00064     /// \return
00065     /// Returns the column
00066     /// 
00067     FDOSQLSERVER_OV_API FdoSqlServerOvGeometricColumn* GetColumn();
00068 
00069     /// \brief
00070     /// Sets the column
00071     /// 
00072     /// \return
00073     /// Returns nothing
00074     /// 
00075     FDOSQLSERVER_OV_API void SetColumn(FdoSqlServerOvGeometricColumn* geometricColumn);
00076 
00077 
00078 protected:
00079 /// \cond DOXYGEN-IGNORE
00080 
00081     FdoSqlServerOvGeometricPropertyDefinition();
00082     FdoSqlServerOvGeometricPropertyDefinition(FdoString* name);
00083     virtual ~FdoSqlServerOvGeometricPropertyDefinition();
00084     virtual void Dispose();
00085 /// \endcond
00086 
00087 private:
00088 };
00089 
00090 /// \brief
00091 /// FdoSqlServerOvGeometricPropertyP is a FdoPtr on FdoSqlServerOvGeometricPropertyDefinition, provided for convenience.
00092 typedef FdoPtr<FdoSqlServerOvGeometricPropertyDefinition> FdoSqlServerOvGeometricPropertyP;
00093 
00094 #endif
00095 
00096 

Comments?