/////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2002-2025, Open Design Alliance (the "Alliance"). // All rights reserved. // // This software and its documentation and related materials are owned by // the Alliance. The software may only be incorporated into application // programs owned by members of the Alliance, subject to a signed // Membership Agreement and Supplemental Software License Agreement with the // Alliance. The structure and organization of this software are the valuable // trade secrets of the Alliance and its suppliers. The software is also // protected by copyright law and international treaty provisions. Application // programs incorporating this software must include the following statement // with their copyright notices: // // This application incorporates Open Design Alliance software pursuant to a license // agreement with Open Design Alliance. // Open Design Alliance Copyright (C) 2002-2025 by Open Design Alliance. // All rights reserved. // // By use of this software, its documentation or related materials, you // acknowledge and accept the above terms. /////////////////////////////////////////////////////////////////////////////// // IfcExportProperties.h: interface for the OdIfcExportProperties class. // ////////////////////////////////////////////////////////////////////// #ifndef _NV2IFC_EXPORTPROPERTIES_H_INCLUDED_ #define _NV2IFC_EXPORTPROPERTIES_H_INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "RxDispatchImpl.h" #include "NwDatabase.h" #include "IfcFile.h" #define STL_USING_MAP #include "OdaSTL.h" namespace NV_IFC_EXPORT { class OdIfcExportProperties : public OdRxDispatchImpl<> { OdSmartPtr _pSvcs; OdInt16 _schemaVersion; OdString _ifcFilePath; OdNwDatabasePtr _db; bool _propertiesConversion; public: ODRX_DECLARE_DYNAMIC_PROPERTY_MAP(OdIfcExportProperties); static OdRxDictionaryPtr createObject(); OdSmartPtr get_IfcServices() { return _pSvcs; } void put_IfcServices(OdSmartPtr pSvcs) { _pSvcs = pSvcs; } const OdInt16 get_SchemaVersion() const { return _schemaVersion; } void put_SchemaVersion(OdInt16 ver) { _schemaVersion = ver; } const OdString get_IfcFilePath() const { return _ifcFilePath; } void put_IfcFilePath(const OdString& path) { _ifcFilePath = path; } OdRxObjectPtr get_Database() const { return _db.get(); } void put_Database(OdRxObject* db) { _db = db; } const bool get_propertiesConversion() const { return _propertiesConversion; } void put_propertiesConversion(bool propertiesConversion) { _propertiesConversion = propertiesConversion; } }; typedef OdSmartPtr OdIfcExportPropertiesPtr; } #endif // _NV2IFC_EXPORTPROPERTIES_H_INCLUDED_