OSGeo FDO Provider for MySQL API Reference

OSGeo FDO Provider for MySQL API

API Reference OSGeo FDO Provider for MySQL

MySqlOvDataPropertyDefinitionCollection.h

Go to the documentation of this file.
00001 #ifndef FDO_MySQLOVDATAPROPERTYDEFINITIONCOLLECTION_H
00002 #define FDO_MySQLOVDATAPROPERTYDEFINITIONCOLLECTION_H
00003 
00004 //
00005 //
00006 // Copyright (C) 2004-2006  Autodesk, Inc.
00007 // 
00008 // This library is free software; you can redistribute it and/or
00009 // modify it under the terms of version 2.1 of the GNU Lesser
00010 // General Public License as published by the Free Software Foundation.
00011 // 
00012 // This library is distributed in the hope that it will be useful,
00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00015 // Lesser General Public License for more details.
00016 // 
00017 // You should have received a copy of the GNU Lesser General Public
00018 // License along with this library; if not, write to the Free Software
00019 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00020 //
00021 #include <Fdo/Schema/SchemaException.h>
00022 #include <Fdo/Commands/Schema/PhysicalElementMappingCollection.h>
00023 #include <Rdbms/Override/MySQL/MySqlOv.h>
00024 #include <Rdbms/Override/MySQL/MySqlOvDataPropertyDefinition.h>
00025 
00026 /// \brief
00027 /// Concrete class defining physical schema overrides for a collection of
00028 /// data properties.
00029 class FdoMySQLOvDataPropertyDefinitionCollection : public FdoPhysicalElementMappingCollection<FdoMySQLOvDataPropertyDefinition>
00030 {
00031 public:
00032     /// \brief
00033     /// Constructs a default of an FdoMySQLOvDataPropertyDefinitionCollection
00034     /// 
00035     /// \return
00036     /// Returns FdoMySQLOvDataPropertyDefinitionCollection
00037     /// 
00038     FDOMYSQL_OV_API static FdoMySQLOvDataPropertyDefinitionCollection* Create();
00039 
00040     /// \brief
00041     /// Constructs an instance of an FdoMySQLOvDataPropertyDefinitionCollection using the specified arguments
00042     /// 
00043     /// \param name 
00044     /// Input name
00045     /// 
00046     /// \return
00047     /// Returns FdoMySQLOvDataPropertyDefinitionCollection
00048     /// 
00049     FDOMYSQL_OV_API static FdoMySQLOvDataPropertyDefinitionCollection* Create(FdoPhysicalElementMapping* parent);
00050 
00051 protected:
00052     FdoMySQLOvDataPropertyDefinitionCollection();
00053     FdoMySQLOvDataPropertyDefinitionCollection(FdoPhysicalElementMapping* parent);
00054     virtual ~FdoMySQLOvDataPropertyDefinitionCollection();
00055     virtual void Dispose();
00056 };
00057 
00058 #endif
00059 
00060 

Comments?