00001 #ifndef FDO_RDBMSOVGEOMETRICCOLUMN_H 00002 #define FDO_RDBMSOVGEOMETRICCOLUMN_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 00021 /// FdoRdbms.lib 00022 00023 #include <Fdo/Commands/Schema/PhysicalElementMapping.h> 00024 #include <Rdbms/Override/RdbmsOv.h> 00025 00026 ///<summary>Abstract base class for defining physical schema overrides for a 00027 ///geometric column. 00028 ///</summary> 00029 class FdoRdbmsOvGeometricColumn : public FdoPhysicalElementMapping 00030 { 00031 public: 00032 /// \cond DOXYGEN-IGNORE 00033 00034 // Sets the parent of this object. Not part of the API. 00035 FDORDBMS_OV_API void SetParent(FdoPhysicalElementMapping* value); 00036 00037 // Serialize this property to XML. Not part of the API. 00038 FDORDBMS_OV_API virtual void _writeXml(FdoXmlWriter* xmlWriter, const FdoXmlFlags* flags); 00039 00040 /// \endcond 00041 00042 protected: 00043 FDORDBMS_OV_API FdoRdbmsOvGeometricColumn(); 00044 FDORDBMS_OV_API FdoRdbmsOvGeometricColumn(FdoString* name); 00045 FDORDBMS_OV_API virtual ~FdoRdbmsOvGeometricColumn(); 00046 00047 // Serialize provider-specific parts of this override to XML 00048 FDORDBMS_OV_API virtual void _writeXmlContents(FdoXmlWriter* xmlWriter, const FdoXmlFlags* flags); 00049 00050 FDORDBMS_OV_API virtual FdoXmlSaxHandler* XmlStartElement( 00051 FdoXmlSaxContext* context, 00052 FdoString* uri, 00053 FdoString* name, 00054 FdoString* qname, 00055 FdoXmlAttributeCollection* atts 00056 ); 00057 00058 00059 }; 00060 00061 ///<summary>FdoRdbmsOvGeometricColumnP is a FdoPtr on FdoRdbmsOvGeometricColumn, provided for convenience.</summary> 00062 typedef FdoPtr<FdoRdbmsOvGeometricColumn> FdoRdbmsOvGeometricColumnP; 00063 00064 #endif 00065