// Copyright (c) 2015 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //======================================================================= //function : BindTypes //purpose : Register types //======================================================================= void StdLPersistent::BindTypes (StdObjMgt_MapOfInstantiators& theMap) { // Non-attribute data theMap.Bind ("PDocStd_Document"); theMap.Bind ("PDF_Data"); theMap.Bind ("PCollection_HAsciiString"); theMap.Bind ("PCollection_HExtendedString"); theMap.Bind ("PColStd_HArray1OfInteger"); theMap.Bind ("PColStd_HArray1OfReal"); theMap.Bind ("PColStd_HArray1OfExtendedString"); theMap.Bind ("PDF_HAttributeArray1"); theMap.Bind ("PDataStd_HArray1OfHAsciiString"); theMap.Bind ("PDataStd_HArray1OfHArray1OfInteger"); theMap.Bind ("PDataStd_HArray1OfHArray1OfReal"); theMap.Bind ("PDataStd_HArray1OfByte"); theMap.Bind ("PColStd_HArray2OfInteger"); // Attributes theMap.Bind ("PDataStd_Directory"); theMap.Bind ("PDataStd_Tick"); theMap.Bind ("PDataStd_NoteBook"); theMap.Bind ("PDataStd_Integer"); theMap.Bind ("PDF_TagSource"); theMap.Bind ("PDF_Reference"); theMap.Bind ("PDataStd_UAttribute"); theMap.Bind ("PDataStd_Name"); theMap.Bind ("PDataStd_Comment"); theMap.Bind ("PDataStd_AsciiString"); theMap.Bind ("PDataStd_IntegerArray"); theMap.Bind ("PDataStd_RealArray"); theMap.Bind ("PDataStd_ByteArray"); theMap.Bind ("PDataStd_ExtStringArray"); theMap.Bind ("PDataStd_BooleanArray"); theMap.Bind ("PDataStd_ReferenceArray"); theMap.Bind ("PDataStd_IntegerArray_1"); theMap.Bind ("PDataStd_RealArray_1"); theMap.Bind ("PDataStd_ByteArray_1"); theMap.Bind ("PDataStd_ExtStringArray_1"); theMap.Bind ("PDataStd_IntegerList"); theMap.Bind ("PDataStd_RealList"); theMap.Bind ("PDataStd_BooleanList"); theMap.Bind ("PDataStd_ExtStringList"); theMap.Bind ("PDataStd_ReferenceList"); theMap.Bind ("PDataStd_IntPackedMap"); theMap.Bind ("PDataStd_IntPackedMap_1"); theMap.Bind ("PDataStd_Real"); theMap.Bind ("PDataStd_Expression"); theMap.Bind ("PDataStd_Relation"); theMap.Bind ("PDataStd_Variable"); theMap.Bind ("PDocStd_XLink"); theMap.Bind ("PFunction_Function"); theMap.Bind ("PDataStd_TreeNode"); theMap.Bind ("PDataStd_NamedData"); }