Autodesk FDO Provider for SQL Server API Reference

SQLServer Provider API

API Reference Autodesk FDO Provider for SQL Server

SqlServerOvGeometricColumn.h

Go to the documentation of this file.
00001 #ifndef FDO_SqlServerOVGEOMETRICCOLUMN_H
00002 #define FDO_SqlServerOVGEOMETRICCOLUMN_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/RdbmsOvGeometricColumn.h>
00033 #include <Rdbms/Override/SqlServer/SqlServerOv.h>
00034 
00035 
00036 /// \brief
00037 /// Concrete class defining physical schema overrides for a geometric column.
00038 class FdoSqlServerOvGeometricColumn : public FdoRdbmsOvGeometricColumn
00039 {
00040 public:
00041     /// \brief
00042     /// Constructs a default of an FdoSqlServerOvGeometricColumn
00043     /// 
00044     /// \return
00045     /// Returns FdoSqlServerOvGeometricColumn
00046     /// 
00047     FDOSQLSERVER_OV_API static FdoSqlServerOvGeometricColumn* Create();
00048 
00049     /// \brief
00050     /// Constructs an instance of an FdoSqlServerOvGeometricColumn using the specified arguments
00051     /// 
00052     /// \param name 
00053     /// Input name
00054     /// 
00055     /// \return
00056     /// Returns FdoSqlServerOvGeometricColumn
00057     /// 
00058     FDOSQLSERVER_OV_API static FdoSqlServerOvGeometricColumn* Create(FdoString* name);
00059 
00060 
00061 /// \cond DOXYGEN-IGNORE
00062 
00063     /// XML serialization functions, not part of the API.
00064 
00065     /// Initialize this element from its XML attributes
00066     virtual void InitFromXml(FdoXmlSaxContext* pContext, FdoXmlAttributeCollection* attrs);
00067 
00068     /// Serialize provider-specific parts of this override to XML
00069     virtual void _writeXmlContents(FdoXmlWriter* xmlWriter, const FdoXmlFlags* flags);
00070 /// \endcond
00071 
00072 protected:
00073     FdoSqlServerOvGeometricColumn();
00074     FdoSqlServerOvGeometricColumn(FdoString* name);
00075     virtual ~FdoSqlServerOvGeometricColumn();
00076     virtual void Dispose();
00077 };
00078 
00079 /// \brief
00080 /// FdoSqlServerOvGeometricColumnP is a FdoPtr on FdoSqlServerOvGeometricColumn, provided for convenience.
00081 typedef FdoPtr<FdoSqlServerOvGeometricColumn> FdoSqlServerOvGeometricColumnP;
00082 
00083 #endif
00084 
00085 

Comments?