IFCReaderGen.h 200 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368
  1. /*
  2. Open Asset Import Library (ASSIMP)
  3. ----------------------------------------------------------------------
  4. Copyright (c) 2006-2010, ASSIMP Development Team
  5. All rights reserved.
  6. Redistribution and use of this software in source and binary forms,
  7. with or without modification, are permitted provided that the
  8. following conditions are met:
  9. * Redistributions of source code must retain the above
  10. copyright notice, this list of conditions and the
  11. following disclaimer.
  12. * Redistributions in binary form must reproduce the above
  13. copyright notice, this list of conditions and the
  14. following disclaimer in the documentation and/or other
  15. materials provided with the distribution.
  16. * Neither the name of the ASSIMP team, nor the names of its
  17. contributors may be used to endorse or promote products
  18. derived from this software without specific prior
  19. written permission of the ASSIMP Development Team.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. ----------------------------------------------------------------------
  32. */
  33. /** MACHINE-GENERATED by scripts/ICFImporter/CppGenerator.py */
  34. #ifndef INCLUDED_IFC_READER_GEN_H
  35. #define INCLUDED_IFC_READER_GEN_H
  36. #include "STEPFile.h"
  37. namespace Assimp {
  38. namespace IFC {
  39. using namespace STEP;
  40. using namespace STEP::EXPRESS;
  41. struct NotImplemented : public ObjectHelper<NotImplemented,0> {
  42. };
  43. // ******************************************************************************
  44. // IFC Custom data types
  45. // ******************************************************************************
  46. // C++ wrapper type for IfcAbsorbedDoseMeasure
  47. typedef REAL IfcAbsorbedDoseMeasure;
  48. // C++ wrapper type for IfcAccelerationMeasure
  49. typedef REAL IfcAccelerationMeasure;
  50. // C++ wrapper type for IfcAmountOfSubstanceMeasure
  51. typedef REAL IfcAmountOfSubstanceMeasure;
  52. // C++ wrapper type for IfcAngularVelocityMeasure
  53. typedef REAL IfcAngularVelocityMeasure;
  54. // C++ wrapper type for IfcAreaMeasure
  55. typedef REAL IfcAreaMeasure;
  56. // C++ wrapper type for IfcBoolean
  57. typedef BOOLEAN IfcBoolean;
  58. // C++ wrapper type for IfcBoxAlignment
  59. typedef STRING IfcBoxAlignment;
  60. // C++ wrapper type for IfcCompoundPlaneAngleMeasure
  61. typedef ListOf< INTEGER, 3, 3 > IfcCompoundPlaneAngleMeasure;
  62. // C++ wrapper type for IfcContextDependentMeasure
  63. typedef REAL IfcContextDependentMeasure;
  64. // C++ wrapper type for IfcCountMeasure
  65. typedef NUMBER IfcCountMeasure;
  66. // C++ wrapper type for IfcCurvatureMeasure
  67. typedef REAL IfcCurvatureMeasure;
  68. // C++ wrapper type for IfcDayInMonthNumber
  69. typedef INTEGER IfcDayInMonthNumber;
  70. // C++ wrapper type for IfcDaylightSavingHour
  71. typedef INTEGER IfcDaylightSavingHour;
  72. // C++ wrapper type for IfcDescriptiveMeasure
  73. typedef STRING IfcDescriptiveMeasure;
  74. // C++ wrapper type for IfcDimensionCount
  75. typedef INTEGER IfcDimensionCount;
  76. // C++ wrapper type for IfcDoseEquivalentMeasure
  77. typedef REAL IfcDoseEquivalentMeasure;
  78. // C++ wrapper type for IfcDynamicViscosityMeasure
  79. typedef REAL IfcDynamicViscosityMeasure;
  80. // C++ wrapper type for IfcElectricCapacitanceMeasure
  81. typedef REAL IfcElectricCapacitanceMeasure;
  82. // C++ wrapper type for IfcElectricChargeMeasure
  83. typedef REAL IfcElectricChargeMeasure;
  84. // C++ wrapper type for IfcElectricConductanceMeasure
  85. typedef REAL IfcElectricConductanceMeasure;
  86. // C++ wrapper type for IfcElectricCurrentMeasure
  87. typedef REAL IfcElectricCurrentMeasure;
  88. // C++ wrapper type for IfcElectricResistanceMeasure
  89. typedef REAL IfcElectricResistanceMeasure;
  90. // C++ wrapper type for IfcElectricVoltageMeasure
  91. typedef REAL IfcElectricVoltageMeasure;
  92. // C++ wrapper type for IfcEnergyMeasure
  93. typedef REAL IfcEnergyMeasure;
  94. // C++ wrapper type for IfcFontStyle
  95. typedef STRING IfcFontStyle;
  96. // C++ wrapper type for IfcFontVariant
  97. typedef STRING IfcFontVariant;
  98. // C++ wrapper type for IfcFontWeight
  99. typedef STRING IfcFontWeight;
  100. // C++ wrapper type for IfcForceMeasure
  101. typedef REAL IfcForceMeasure;
  102. // C++ wrapper type for IfcFrequencyMeasure
  103. typedef REAL IfcFrequencyMeasure;
  104. // C++ wrapper type for IfcGloballyUniqueId
  105. typedef STRING IfcGloballyUniqueId;
  106. // C++ wrapper type for IfcHeatFluxDensityMeasure
  107. typedef REAL IfcHeatFluxDensityMeasure;
  108. // C++ wrapper type for IfcHeatingValueMeasure
  109. typedef REAL IfcHeatingValueMeasure;
  110. // C++ wrapper type for IfcHourInDay
  111. typedef INTEGER IfcHourInDay;
  112. // C++ wrapper type for IfcIdentifier
  113. typedef STRING IfcIdentifier;
  114. // C++ wrapper type for IfcIlluminanceMeasure
  115. typedef REAL IfcIlluminanceMeasure;
  116. // C++ wrapper type for IfcInductanceMeasure
  117. typedef REAL IfcInductanceMeasure;
  118. // C++ wrapper type for IfcInteger
  119. typedef INTEGER IfcInteger;
  120. // C++ wrapper type for IfcIntegerCountRateMeasure
  121. typedef INTEGER IfcIntegerCountRateMeasure;
  122. // C++ wrapper type for IfcIonConcentrationMeasure
  123. typedef REAL IfcIonConcentrationMeasure;
  124. // C++ wrapper type for IfcIsothermalMoistureCapacityMeasure
  125. typedef REAL IfcIsothermalMoistureCapacityMeasure;
  126. // C++ wrapper type for IfcKinematicViscosityMeasure
  127. typedef REAL IfcKinematicViscosityMeasure;
  128. // C++ wrapper type for IfcLabel
  129. typedef STRING IfcLabel;
  130. // C++ wrapper type for IfcLengthMeasure
  131. typedef REAL IfcLengthMeasure;
  132. // C++ wrapper type for IfcLinearForceMeasure
  133. typedef REAL IfcLinearForceMeasure;
  134. // C++ wrapper type for IfcLinearMomentMeasure
  135. typedef REAL IfcLinearMomentMeasure;
  136. // C++ wrapper type for IfcLinearStiffnessMeasure
  137. typedef REAL IfcLinearStiffnessMeasure;
  138. // C++ wrapper type for IfcLinearVelocityMeasure
  139. typedef REAL IfcLinearVelocityMeasure;
  140. // C++ wrapper type for IfcLogical
  141. typedef LOGICAL IfcLogical;
  142. // C++ wrapper type for IfcLuminousFluxMeasure
  143. typedef REAL IfcLuminousFluxMeasure;
  144. // C++ wrapper type for IfcLuminousIntensityDistributionMeasure
  145. typedef REAL IfcLuminousIntensityDistributionMeasure;
  146. // C++ wrapper type for IfcLuminousIntensityMeasure
  147. typedef REAL IfcLuminousIntensityMeasure;
  148. // C++ wrapper type for IfcMagneticFluxDensityMeasure
  149. typedef REAL IfcMagneticFluxDensityMeasure;
  150. // C++ wrapper type for IfcMagneticFluxMeasure
  151. typedef REAL IfcMagneticFluxMeasure;
  152. // C++ wrapper type for IfcMassDensityMeasure
  153. typedef REAL IfcMassDensityMeasure;
  154. // C++ wrapper type for IfcMassFlowRateMeasure
  155. typedef REAL IfcMassFlowRateMeasure;
  156. // C++ wrapper type for IfcMassMeasure
  157. typedef REAL IfcMassMeasure;
  158. // C++ wrapper type for IfcMassPerLengthMeasure
  159. typedef REAL IfcMassPerLengthMeasure;
  160. // C++ wrapper type for IfcMinuteInHour
  161. typedef INTEGER IfcMinuteInHour;
  162. // C++ wrapper type for IfcModulusOfElasticityMeasure
  163. typedef REAL IfcModulusOfElasticityMeasure;
  164. // C++ wrapper type for IfcModulusOfLinearSubgradeReactionMeasure
  165. typedef REAL IfcModulusOfLinearSubgradeReactionMeasure;
  166. // C++ wrapper type for IfcModulusOfRotationalSubgradeReactionMeasure
  167. typedef REAL IfcModulusOfRotationalSubgradeReactionMeasure;
  168. // C++ wrapper type for IfcModulusOfSubgradeReactionMeasure
  169. typedef REAL IfcModulusOfSubgradeReactionMeasure;
  170. // C++ wrapper type for IfcMoistureDiffusivityMeasure
  171. typedef REAL IfcMoistureDiffusivityMeasure;
  172. // C++ wrapper type for IfcMolecularWeightMeasure
  173. typedef REAL IfcMolecularWeightMeasure;
  174. // C++ wrapper type for IfcMomentOfInertiaMeasure
  175. typedef REAL IfcMomentOfInertiaMeasure;
  176. // C++ wrapper type for IfcMonetaryMeasure
  177. typedef REAL IfcMonetaryMeasure;
  178. // C++ wrapper type for IfcMonthInYearNumber
  179. typedef INTEGER IfcMonthInYearNumber;
  180. // C++ wrapper type for IfcNormalisedRatioMeasure
  181. typedef REAL IfcNormalisedRatioMeasure;
  182. // C++ wrapper type for IfcNumericMeasure
  183. typedef NUMBER IfcNumericMeasure;
  184. // C++ wrapper type for IfcPHMeasure
  185. typedef REAL IfcPHMeasure;
  186. // C++ wrapper type for IfcParameterValue
  187. typedef REAL IfcParameterValue;
  188. // C++ wrapper type for IfcPlanarForceMeasure
  189. typedef REAL IfcPlanarForceMeasure;
  190. // C++ wrapper type for IfcPlaneAngleMeasure
  191. typedef REAL IfcPlaneAngleMeasure;
  192. // C++ wrapper type for IfcPositiveLengthMeasure
  193. typedef REAL IfcPositiveLengthMeasure;
  194. // C++ wrapper type for IfcPositivePlaneAngleMeasure
  195. typedef REAL IfcPositivePlaneAngleMeasure;
  196. // C++ wrapper type for IfcPositiveRatioMeasure
  197. typedef REAL IfcPositiveRatioMeasure;
  198. // C++ wrapper type for IfcPowerMeasure
  199. typedef REAL IfcPowerMeasure;
  200. // C++ wrapper type for IfcPresentableText
  201. typedef STRING IfcPresentableText;
  202. // C++ wrapper type for IfcPressureMeasure
  203. typedef REAL IfcPressureMeasure;
  204. // C++ wrapper type for IfcRadioActivityMeasure
  205. typedef REAL IfcRadioActivityMeasure;
  206. // C++ wrapper type for IfcRatioMeasure
  207. typedef REAL IfcRatioMeasure;
  208. // C++ wrapper type for IfcReal
  209. typedef REAL IfcReal;
  210. // C++ wrapper type for IfcRotationalFrequencyMeasure
  211. typedef REAL IfcRotationalFrequencyMeasure;
  212. // C++ wrapper type for IfcRotationalMassMeasure
  213. typedef REAL IfcRotationalMassMeasure;
  214. // C++ wrapper type for IfcRotationalStiffnessMeasure
  215. typedef REAL IfcRotationalStiffnessMeasure;
  216. // C++ wrapper type for IfcSecondInMinute
  217. typedef REAL IfcSecondInMinute;
  218. // C++ wrapper type for IfcSectionModulusMeasure
  219. typedef REAL IfcSectionModulusMeasure;
  220. // C++ wrapper type for IfcSectionalAreaIntegralMeasure
  221. typedef REAL IfcSectionalAreaIntegralMeasure;
  222. // C++ wrapper type for IfcShearModulusMeasure
  223. typedef REAL IfcShearModulusMeasure;
  224. // C++ wrapper type for IfcSolidAngleMeasure
  225. typedef REAL IfcSolidAngleMeasure;
  226. // C++ wrapper type for IfcSoundPowerMeasure
  227. typedef REAL IfcSoundPowerMeasure;
  228. // C++ wrapper type for IfcSoundPressureMeasure
  229. typedef REAL IfcSoundPressureMeasure;
  230. // C++ wrapper type for IfcSpecificHeatCapacityMeasure
  231. typedef REAL IfcSpecificHeatCapacityMeasure;
  232. // C++ wrapper type for IfcSpecularExponent
  233. typedef REAL IfcSpecularExponent;
  234. // C++ wrapper type for IfcSpecularRoughness
  235. typedef REAL IfcSpecularRoughness;
  236. // C++ wrapper type for IfcTemperatureGradientMeasure
  237. typedef REAL IfcTemperatureGradientMeasure;
  238. // C++ wrapper type for IfcText
  239. typedef STRING IfcText;
  240. // C++ wrapper type for IfcTextAlignment
  241. typedef STRING IfcTextAlignment;
  242. // C++ wrapper type for IfcTextDecoration
  243. typedef STRING IfcTextDecoration;
  244. // C++ wrapper type for IfcTextFontName
  245. typedef STRING IfcTextFontName;
  246. // C++ wrapper type for IfcTextTransformation
  247. typedef STRING IfcTextTransformation;
  248. // C++ wrapper type for IfcThermalAdmittanceMeasure
  249. typedef REAL IfcThermalAdmittanceMeasure;
  250. // C++ wrapper type for IfcThermalConductivityMeasure
  251. typedef REAL IfcThermalConductivityMeasure;
  252. // C++ wrapper type for IfcThermalExpansionCoefficientMeasure
  253. typedef REAL IfcThermalExpansionCoefficientMeasure;
  254. // C++ wrapper type for IfcThermalResistanceMeasure
  255. typedef REAL IfcThermalResistanceMeasure;
  256. // C++ wrapper type for IfcThermalTransmittanceMeasure
  257. typedef REAL IfcThermalTransmittanceMeasure;
  258. // C++ wrapper type for IfcThermodynamicTemperatureMeasure
  259. typedef REAL IfcThermodynamicTemperatureMeasure;
  260. // C++ wrapper type for IfcTimeMeasure
  261. typedef REAL IfcTimeMeasure;
  262. // C++ wrapper type for IfcTimeStamp
  263. typedef INTEGER IfcTimeStamp;
  264. // C++ wrapper type for IfcTorqueMeasure
  265. typedef REAL IfcTorqueMeasure;
  266. // C++ wrapper type for IfcVaporPermeabilityMeasure
  267. typedef REAL IfcVaporPermeabilityMeasure;
  268. // C++ wrapper type for IfcVolumeMeasure
  269. typedef REAL IfcVolumeMeasure;
  270. // C++ wrapper type for IfcVolumetricFlowRateMeasure
  271. typedef REAL IfcVolumetricFlowRateMeasure;
  272. // C++ wrapper type for IfcWarpingConstantMeasure
  273. typedef REAL IfcWarpingConstantMeasure;
  274. // C++ wrapper type for IfcWarpingMomentMeasure
  275. typedef REAL IfcWarpingMomentMeasure;
  276. // C++ wrapper type for IfcYearNumber
  277. typedef INTEGER IfcYearNumber;
  278. // C++ wrapper type for IfcActionSourceTypeEnum
  279. typedef ENUMERATION IfcActionSourceTypeEnum;
  280. // C++ wrapper type for IfcActionTypeEnum
  281. typedef ENUMERATION IfcActionTypeEnum;
  282. // C++ wrapper type for IfcActuatorTypeEnum
  283. typedef ENUMERATION IfcActuatorTypeEnum;
  284. // C++ wrapper type for IfcAddressTypeEnum
  285. typedef ENUMERATION IfcAddressTypeEnum;
  286. // C++ wrapper type for IfcAheadOrBehind
  287. typedef ENUMERATION IfcAheadOrBehind;
  288. // C++ wrapper type for IfcAirTerminalBoxTypeEnum
  289. typedef ENUMERATION IfcAirTerminalBoxTypeEnum;
  290. // C++ wrapper type for IfcAirTerminalTypeEnum
  291. typedef ENUMERATION IfcAirTerminalTypeEnum;
  292. // C++ wrapper type for IfcAirToAirHeatRecoveryTypeEnum
  293. typedef ENUMERATION IfcAirToAirHeatRecoveryTypeEnum;
  294. // C++ wrapper type for IfcAlarmTypeEnum
  295. typedef ENUMERATION IfcAlarmTypeEnum;
  296. // C++ wrapper type for IfcAnalysisModelTypeEnum
  297. typedef ENUMERATION IfcAnalysisModelTypeEnum;
  298. // C++ wrapper type for IfcAnalysisTheoryTypeEnum
  299. typedef ENUMERATION IfcAnalysisTheoryTypeEnum;
  300. // C++ wrapper type for IfcArithmeticOperatorEnum
  301. typedef ENUMERATION IfcArithmeticOperatorEnum;
  302. // C++ wrapper type for IfcAssemblyPlaceEnum
  303. typedef ENUMERATION IfcAssemblyPlaceEnum;
  304. // C++ wrapper type for IfcBSplineCurveForm
  305. typedef ENUMERATION IfcBSplineCurveForm;
  306. // C++ wrapper type for IfcBeamTypeEnum
  307. typedef ENUMERATION IfcBeamTypeEnum;
  308. // C++ wrapper type for IfcBenchmarkEnum
  309. typedef ENUMERATION IfcBenchmarkEnum;
  310. // C++ wrapper type for IfcBoilerTypeEnum
  311. typedef ENUMERATION IfcBoilerTypeEnum;
  312. // C++ wrapper type for IfcBooleanOperator
  313. typedef ENUMERATION IfcBooleanOperator;
  314. // C++ wrapper type for IfcBuildingElementProxyTypeEnum
  315. typedef ENUMERATION IfcBuildingElementProxyTypeEnum;
  316. // C++ wrapper type for IfcCableCarrierFittingTypeEnum
  317. typedef ENUMERATION IfcCableCarrierFittingTypeEnum;
  318. // C++ wrapper type for IfcCableCarrierSegmentTypeEnum
  319. typedef ENUMERATION IfcCableCarrierSegmentTypeEnum;
  320. // C++ wrapper type for IfcCableSegmentTypeEnum
  321. typedef ENUMERATION IfcCableSegmentTypeEnum;
  322. // C++ wrapper type for IfcChangeActionEnum
  323. typedef ENUMERATION IfcChangeActionEnum;
  324. // C++ wrapper type for IfcChillerTypeEnum
  325. typedef ENUMERATION IfcChillerTypeEnum;
  326. // C++ wrapper type for IfcCoilTypeEnum
  327. typedef ENUMERATION IfcCoilTypeEnum;
  328. // C++ wrapper type for IfcColumnTypeEnum
  329. typedef ENUMERATION IfcColumnTypeEnum;
  330. // C++ wrapper type for IfcCompressorTypeEnum
  331. typedef ENUMERATION IfcCompressorTypeEnum;
  332. // C++ wrapper type for IfcCondenserTypeEnum
  333. typedef ENUMERATION IfcCondenserTypeEnum;
  334. // C++ wrapper type for IfcConnectionTypeEnum
  335. typedef ENUMERATION IfcConnectionTypeEnum;
  336. // C++ wrapper type for IfcConstraintEnum
  337. typedef ENUMERATION IfcConstraintEnum;
  338. // C++ wrapper type for IfcControllerTypeEnum
  339. typedef ENUMERATION IfcControllerTypeEnum;
  340. // C++ wrapper type for IfcCooledBeamTypeEnum
  341. typedef ENUMERATION IfcCooledBeamTypeEnum;
  342. // C++ wrapper type for IfcCoolingTowerTypeEnum
  343. typedef ENUMERATION IfcCoolingTowerTypeEnum;
  344. // C++ wrapper type for IfcCostScheduleTypeEnum
  345. typedef ENUMERATION IfcCostScheduleTypeEnum;
  346. // C++ wrapper type for IfcCoveringTypeEnum
  347. typedef ENUMERATION IfcCoveringTypeEnum;
  348. // C++ wrapper type for IfcCurrencyEnum
  349. typedef ENUMERATION IfcCurrencyEnum;
  350. // C++ wrapper type for IfcCurtainWallTypeEnum
  351. typedef ENUMERATION IfcCurtainWallTypeEnum;
  352. // C++ wrapper type for IfcDamperTypeEnum
  353. typedef ENUMERATION IfcDamperTypeEnum;
  354. // C++ wrapper type for IfcDataOriginEnum
  355. typedef ENUMERATION IfcDataOriginEnum;
  356. // C++ wrapper type for IfcDerivedUnitEnum
  357. typedef ENUMERATION IfcDerivedUnitEnum;
  358. // C++ wrapper type for IfcDimensionExtentUsage
  359. typedef ENUMERATION IfcDimensionExtentUsage;
  360. // C++ wrapper type for IfcDirectionSenseEnum
  361. typedef ENUMERATION IfcDirectionSenseEnum;
  362. // C++ wrapper type for IfcDistributionChamberElementTypeEnum
  363. typedef ENUMERATION IfcDistributionChamberElementTypeEnum;
  364. // C++ wrapper type for IfcDocumentConfidentialityEnum
  365. typedef ENUMERATION IfcDocumentConfidentialityEnum;
  366. // C++ wrapper type for IfcDocumentStatusEnum
  367. typedef ENUMERATION IfcDocumentStatusEnum;
  368. // C++ wrapper type for IfcDoorPanelOperationEnum
  369. typedef ENUMERATION IfcDoorPanelOperationEnum;
  370. // C++ wrapper type for IfcDoorPanelPositionEnum
  371. typedef ENUMERATION IfcDoorPanelPositionEnum;
  372. // C++ wrapper type for IfcDoorStyleConstructionEnum
  373. typedef ENUMERATION IfcDoorStyleConstructionEnum;
  374. // C++ wrapper type for IfcDoorStyleOperationEnum
  375. typedef ENUMERATION IfcDoorStyleOperationEnum;
  376. // C++ wrapper type for IfcDuctFittingTypeEnum
  377. typedef ENUMERATION IfcDuctFittingTypeEnum;
  378. // C++ wrapper type for IfcDuctSegmentTypeEnum
  379. typedef ENUMERATION IfcDuctSegmentTypeEnum;
  380. // C++ wrapper type for IfcDuctSilencerTypeEnum
  381. typedef ENUMERATION IfcDuctSilencerTypeEnum;
  382. // C++ wrapper type for IfcElectricApplianceTypeEnum
  383. typedef ENUMERATION IfcElectricApplianceTypeEnum;
  384. // C++ wrapper type for IfcElectricCurrentEnum
  385. typedef ENUMERATION IfcElectricCurrentEnum;
  386. // C++ wrapper type for IfcElectricDistributionPointFunctionEnum
  387. typedef ENUMERATION IfcElectricDistributionPointFunctionEnum;
  388. // C++ wrapper type for IfcElectricFlowStorageDeviceTypeEnum
  389. typedef ENUMERATION IfcElectricFlowStorageDeviceTypeEnum;
  390. // C++ wrapper type for IfcElectricGeneratorTypeEnum
  391. typedef ENUMERATION IfcElectricGeneratorTypeEnum;
  392. // C++ wrapper type for IfcElectricHeaterTypeEnum
  393. typedef ENUMERATION IfcElectricHeaterTypeEnum;
  394. // C++ wrapper type for IfcElectricMotorTypeEnum
  395. typedef ENUMERATION IfcElectricMotorTypeEnum;
  396. // C++ wrapper type for IfcElectricTimeControlTypeEnum
  397. typedef ENUMERATION IfcElectricTimeControlTypeEnum;
  398. // C++ wrapper type for IfcElementAssemblyTypeEnum
  399. typedef ENUMERATION IfcElementAssemblyTypeEnum;
  400. // C++ wrapper type for IfcElementCompositionEnum
  401. typedef ENUMERATION IfcElementCompositionEnum;
  402. // C++ wrapper type for IfcEnergySequenceEnum
  403. typedef ENUMERATION IfcEnergySequenceEnum;
  404. // C++ wrapper type for IfcEnvironmentalImpactCategoryEnum
  405. typedef ENUMERATION IfcEnvironmentalImpactCategoryEnum;
  406. // C++ wrapper type for IfcEvaporativeCoolerTypeEnum
  407. typedef ENUMERATION IfcEvaporativeCoolerTypeEnum;
  408. // C++ wrapper type for IfcEvaporatorTypeEnum
  409. typedef ENUMERATION IfcEvaporatorTypeEnum;
  410. // C++ wrapper type for IfcFanTypeEnum
  411. typedef ENUMERATION IfcFanTypeEnum;
  412. // C++ wrapper type for IfcFilterTypeEnum
  413. typedef ENUMERATION IfcFilterTypeEnum;
  414. // C++ wrapper type for IfcFireSuppressionTerminalTypeEnum
  415. typedef ENUMERATION IfcFireSuppressionTerminalTypeEnum;
  416. // C++ wrapper type for IfcFlowDirectionEnum
  417. typedef ENUMERATION IfcFlowDirectionEnum;
  418. // C++ wrapper type for IfcFlowInstrumentTypeEnum
  419. typedef ENUMERATION IfcFlowInstrumentTypeEnum;
  420. // C++ wrapper type for IfcFlowMeterTypeEnum
  421. typedef ENUMERATION IfcFlowMeterTypeEnum;
  422. // C++ wrapper type for IfcFootingTypeEnum
  423. typedef ENUMERATION IfcFootingTypeEnum;
  424. // C++ wrapper type for IfcGasTerminalTypeEnum
  425. typedef ENUMERATION IfcGasTerminalTypeEnum;
  426. // C++ wrapper type for IfcGeometricProjectionEnum
  427. typedef ENUMERATION IfcGeometricProjectionEnum;
  428. // C++ wrapper type for IfcGlobalOrLocalEnum
  429. typedef ENUMERATION IfcGlobalOrLocalEnum;
  430. // C++ wrapper type for IfcHeatExchangerTypeEnum
  431. typedef ENUMERATION IfcHeatExchangerTypeEnum;
  432. // C++ wrapper type for IfcHumidifierTypeEnum
  433. typedef ENUMERATION IfcHumidifierTypeEnum;
  434. // C++ wrapper type for IfcInternalOrExternalEnum
  435. typedef ENUMERATION IfcInternalOrExternalEnum;
  436. // C++ wrapper type for IfcInventoryTypeEnum
  437. typedef ENUMERATION IfcInventoryTypeEnum;
  438. // C++ wrapper type for IfcJunctionBoxTypeEnum
  439. typedef ENUMERATION IfcJunctionBoxTypeEnum;
  440. // C++ wrapper type for IfcLampTypeEnum
  441. typedef ENUMERATION IfcLampTypeEnum;
  442. // C++ wrapper type for IfcLayerSetDirectionEnum
  443. typedef ENUMERATION IfcLayerSetDirectionEnum;
  444. // C++ wrapper type for IfcLightDistributionCurveEnum
  445. typedef ENUMERATION IfcLightDistributionCurveEnum;
  446. // C++ wrapper type for IfcLightEmissionSourceEnum
  447. typedef ENUMERATION IfcLightEmissionSourceEnum;
  448. // C++ wrapper type for IfcLightFixtureTypeEnum
  449. typedef ENUMERATION IfcLightFixtureTypeEnum;
  450. // C++ wrapper type for IfcLoadGroupTypeEnum
  451. typedef ENUMERATION IfcLoadGroupTypeEnum;
  452. // C++ wrapper type for IfcLogicalOperatorEnum
  453. typedef ENUMERATION IfcLogicalOperatorEnum;
  454. // C++ wrapper type for IfcMemberTypeEnum
  455. typedef ENUMERATION IfcMemberTypeEnum;
  456. // C++ wrapper type for IfcMotorConnectionTypeEnum
  457. typedef ENUMERATION IfcMotorConnectionTypeEnum;
  458. // C++ wrapper type for IfcNullStyle
  459. typedef ENUMERATION IfcNullStyle;
  460. // C++ wrapper type for IfcObjectTypeEnum
  461. typedef ENUMERATION IfcObjectTypeEnum;
  462. // C++ wrapper type for IfcObjectiveEnum
  463. typedef ENUMERATION IfcObjectiveEnum;
  464. // C++ wrapper type for IfcOccupantTypeEnum
  465. typedef ENUMERATION IfcOccupantTypeEnum;
  466. // C++ wrapper type for IfcOutletTypeEnum
  467. typedef ENUMERATION IfcOutletTypeEnum;
  468. // C++ wrapper type for IfcPermeableCoveringOperationEnum
  469. typedef ENUMERATION IfcPermeableCoveringOperationEnum;
  470. // C++ wrapper type for IfcPhysicalOrVirtualEnum
  471. typedef ENUMERATION IfcPhysicalOrVirtualEnum;
  472. // C++ wrapper type for IfcPileConstructionEnum
  473. typedef ENUMERATION IfcPileConstructionEnum;
  474. // C++ wrapper type for IfcPileTypeEnum
  475. typedef ENUMERATION IfcPileTypeEnum;
  476. // C++ wrapper type for IfcPipeFittingTypeEnum
  477. typedef ENUMERATION IfcPipeFittingTypeEnum;
  478. // C++ wrapper type for IfcPipeSegmentTypeEnum
  479. typedef ENUMERATION IfcPipeSegmentTypeEnum;
  480. // C++ wrapper type for IfcPlateTypeEnum
  481. typedef ENUMERATION IfcPlateTypeEnum;
  482. // C++ wrapper type for IfcProcedureTypeEnum
  483. typedef ENUMERATION IfcProcedureTypeEnum;
  484. // C++ wrapper type for IfcProfileTypeEnum
  485. typedef ENUMERATION IfcProfileTypeEnum;
  486. // C++ wrapper type for IfcProjectOrderRecordTypeEnum
  487. typedef ENUMERATION IfcProjectOrderRecordTypeEnum;
  488. // C++ wrapper type for IfcProjectOrderTypeEnum
  489. typedef ENUMERATION IfcProjectOrderTypeEnum;
  490. // C++ wrapper type for IfcProjectedOrTrueLengthEnum
  491. typedef ENUMERATION IfcProjectedOrTrueLengthEnum;
  492. // C++ wrapper type for IfcPropertySourceEnum
  493. typedef ENUMERATION IfcPropertySourceEnum;
  494. // C++ wrapper type for IfcProtectiveDeviceTypeEnum
  495. typedef ENUMERATION IfcProtectiveDeviceTypeEnum;
  496. // C++ wrapper type for IfcPumpTypeEnum
  497. typedef ENUMERATION IfcPumpTypeEnum;
  498. // C++ wrapper type for IfcRailingTypeEnum
  499. typedef ENUMERATION IfcRailingTypeEnum;
  500. // C++ wrapper type for IfcRampFlightTypeEnum
  501. typedef ENUMERATION IfcRampFlightTypeEnum;
  502. // C++ wrapper type for IfcRampTypeEnum
  503. typedef ENUMERATION IfcRampTypeEnum;
  504. // C++ wrapper type for IfcReflectanceMethodEnum
  505. typedef ENUMERATION IfcReflectanceMethodEnum;
  506. // C++ wrapper type for IfcReinforcingBarRoleEnum
  507. typedef ENUMERATION IfcReinforcingBarRoleEnum;
  508. // C++ wrapper type for IfcReinforcingBarSurfaceEnum
  509. typedef ENUMERATION IfcReinforcingBarSurfaceEnum;
  510. // C++ wrapper type for IfcResourceConsumptionEnum
  511. typedef ENUMERATION IfcResourceConsumptionEnum;
  512. // C++ wrapper type for IfcRibPlateDirectionEnum
  513. typedef ENUMERATION IfcRibPlateDirectionEnum;
  514. // C++ wrapper type for IfcRoleEnum
  515. typedef ENUMERATION IfcRoleEnum;
  516. // C++ wrapper type for IfcRoofTypeEnum
  517. typedef ENUMERATION IfcRoofTypeEnum;
  518. // C++ wrapper type for IfcSIPrefix
  519. typedef ENUMERATION IfcSIPrefix;
  520. // C++ wrapper type for IfcSIUnitName
  521. typedef ENUMERATION IfcSIUnitName;
  522. // C++ wrapper type for IfcSanitaryTerminalTypeEnum
  523. typedef ENUMERATION IfcSanitaryTerminalTypeEnum;
  524. // C++ wrapper type for IfcSectionTypeEnum
  525. typedef ENUMERATION IfcSectionTypeEnum;
  526. // C++ wrapper type for IfcSensorTypeEnum
  527. typedef ENUMERATION IfcSensorTypeEnum;
  528. // C++ wrapper type for IfcSequenceEnum
  529. typedef ENUMERATION IfcSequenceEnum;
  530. // C++ wrapper type for IfcServiceLifeFactorTypeEnum
  531. typedef ENUMERATION IfcServiceLifeFactorTypeEnum;
  532. // C++ wrapper type for IfcServiceLifeTypeEnum
  533. typedef ENUMERATION IfcServiceLifeTypeEnum;
  534. // C++ wrapper type for IfcSlabTypeEnum
  535. typedef ENUMERATION IfcSlabTypeEnum;
  536. // C++ wrapper type for IfcSoundScaleEnum
  537. typedef ENUMERATION IfcSoundScaleEnum;
  538. // C++ wrapper type for IfcSpaceHeaterTypeEnum
  539. typedef ENUMERATION IfcSpaceHeaterTypeEnum;
  540. // C++ wrapper type for IfcSpaceTypeEnum
  541. typedef ENUMERATION IfcSpaceTypeEnum;
  542. // C++ wrapper type for IfcStackTerminalTypeEnum
  543. typedef ENUMERATION IfcStackTerminalTypeEnum;
  544. // C++ wrapper type for IfcStairFlightTypeEnum
  545. typedef ENUMERATION IfcStairFlightTypeEnum;
  546. // C++ wrapper type for IfcStairTypeEnum
  547. typedef ENUMERATION IfcStairTypeEnum;
  548. // C++ wrapper type for IfcStateEnum
  549. typedef ENUMERATION IfcStateEnum;
  550. // C++ wrapper type for IfcStructuralCurveTypeEnum
  551. typedef ENUMERATION IfcStructuralCurveTypeEnum;
  552. // C++ wrapper type for IfcStructuralSurfaceTypeEnum
  553. typedef ENUMERATION IfcStructuralSurfaceTypeEnum;
  554. // C++ wrapper type for IfcSurfaceSide
  555. typedef ENUMERATION IfcSurfaceSide;
  556. // C++ wrapper type for IfcSurfaceTextureEnum
  557. typedef ENUMERATION IfcSurfaceTextureEnum;
  558. // C++ wrapper type for IfcSwitchingDeviceTypeEnum
  559. typedef ENUMERATION IfcSwitchingDeviceTypeEnum;
  560. // C++ wrapper type for IfcTankTypeEnum
  561. typedef ENUMERATION IfcTankTypeEnum;
  562. // C++ wrapper type for IfcTendonTypeEnum
  563. typedef ENUMERATION IfcTendonTypeEnum;
  564. // C++ wrapper type for IfcTextPath
  565. typedef ENUMERATION IfcTextPath;
  566. // C++ wrapper type for IfcThermalLoadSourceEnum
  567. typedef ENUMERATION IfcThermalLoadSourceEnum;
  568. // C++ wrapper type for IfcThermalLoadTypeEnum
  569. typedef ENUMERATION IfcThermalLoadTypeEnum;
  570. // C++ wrapper type for IfcTimeSeriesDataTypeEnum
  571. typedef ENUMERATION IfcTimeSeriesDataTypeEnum;
  572. // C++ wrapper type for IfcTimeSeriesScheduleTypeEnum
  573. typedef ENUMERATION IfcTimeSeriesScheduleTypeEnum;
  574. // C++ wrapper type for IfcTransformerTypeEnum
  575. typedef ENUMERATION IfcTransformerTypeEnum;
  576. // C++ wrapper type for IfcTransitionCode
  577. typedef ENUMERATION IfcTransitionCode;
  578. // C++ wrapper type for IfcTransportElementTypeEnum
  579. typedef ENUMERATION IfcTransportElementTypeEnum;
  580. // C++ wrapper type for IfcTrimmingPreference
  581. typedef ENUMERATION IfcTrimmingPreference;
  582. // C++ wrapper type for IfcTubeBundleTypeEnum
  583. typedef ENUMERATION IfcTubeBundleTypeEnum;
  584. // C++ wrapper type for IfcUnitEnum
  585. typedef ENUMERATION IfcUnitEnum;
  586. // C++ wrapper type for IfcUnitaryEquipmentTypeEnum
  587. typedef ENUMERATION IfcUnitaryEquipmentTypeEnum;
  588. // C++ wrapper type for IfcValveTypeEnum
  589. typedef ENUMERATION IfcValveTypeEnum;
  590. // C++ wrapper type for IfcVibrationIsolatorTypeEnum
  591. typedef ENUMERATION IfcVibrationIsolatorTypeEnum;
  592. // C++ wrapper type for IfcWallTypeEnum
  593. typedef ENUMERATION IfcWallTypeEnum;
  594. // C++ wrapper type for IfcWasteTerminalTypeEnum
  595. typedef ENUMERATION IfcWasteTerminalTypeEnum;
  596. // C++ wrapper type for IfcWindowPanelOperationEnum
  597. typedef ENUMERATION IfcWindowPanelOperationEnum;
  598. // C++ wrapper type for IfcWindowPanelPositionEnum
  599. typedef ENUMERATION IfcWindowPanelPositionEnum;
  600. // C++ wrapper type for IfcWindowStyleConstructionEnum
  601. typedef ENUMERATION IfcWindowStyleConstructionEnum;
  602. // C++ wrapper type for IfcWindowStyleOperationEnum
  603. typedef ENUMERATION IfcWindowStyleOperationEnum;
  604. // C++ wrapper type for IfcWorkControlTypeEnum
  605. typedef ENUMERATION IfcWorkControlTypeEnum;
  606. // C++ wrapper type for IfcActorSelect
  607. typedef SELECT IfcActorSelect;
  608. // C++ wrapper type for IfcAppliedValueSelect
  609. typedef SELECT IfcAppliedValueSelect;
  610. // C++ wrapper type for IfcAxis2Placement
  611. typedef SELECT IfcAxis2Placement;
  612. // C++ wrapper type for IfcBooleanOperand
  613. typedef SELECT IfcBooleanOperand;
  614. // C++ wrapper type for IfcCharacterStyleSelect
  615. typedef SELECT IfcCharacterStyleSelect;
  616. // C++ wrapper type for IfcClassificationNotationSelect
  617. typedef SELECT IfcClassificationNotationSelect;
  618. // C++ wrapper type for IfcColour
  619. typedef SELECT IfcColour;
  620. // C++ wrapper type for IfcColourOrFactor
  621. typedef SELECT IfcColourOrFactor;
  622. // C++ wrapper type for IfcConditionCriterionSelect
  623. typedef SELECT IfcConditionCriterionSelect;
  624. // C++ wrapper type for IfcCsgSelect
  625. typedef SELECT IfcCsgSelect;
  626. // C++ wrapper type for IfcCurveFontOrScaledCurveFontSelect
  627. typedef SELECT IfcCurveFontOrScaledCurveFontSelect;
  628. // C++ wrapper type for IfcCurveOrEdgeCurve
  629. typedef SELECT IfcCurveOrEdgeCurve;
  630. // C++ wrapper type for IfcCurveStyleFontSelect
  631. typedef SELECT IfcCurveStyleFontSelect;
  632. // C++ wrapper type for IfcDateTimeSelect
  633. typedef SELECT IfcDateTimeSelect;
  634. // C++ wrapper type for IfcDefinedSymbolSelect
  635. typedef SELECT IfcDefinedSymbolSelect;
  636. // C++ wrapper type for IfcDerivedMeasureValue
  637. typedef SELECT IfcDerivedMeasureValue;
  638. // C++ wrapper type for IfcDocumentSelect
  639. typedef SELECT IfcDocumentSelect;
  640. // C++ wrapper type for IfcDraughtingCalloutElement
  641. typedef SELECT IfcDraughtingCalloutElement;
  642. // C++ wrapper type for IfcFillAreaStyleTileShapeSelect
  643. typedef SELECT IfcFillAreaStyleTileShapeSelect;
  644. // C++ wrapper type for IfcFillStyleSelect
  645. typedef SELECT IfcFillStyleSelect;
  646. // C++ wrapper type for IfcGeometricSetSelect
  647. typedef SELECT IfcGeometricSetSelect;
  648. // C++ wrapper type for IfcHatchLineDistanceSelect
  649. typedef SELECT IfcHatchLineDistanceSelect;
  650. // C++ wrapper type for IfcLayeredItem
  651. typedef SELECT IfcLayeredItem;
  652. // C++ wrapper type for IfcLibrarySelect
  653. typedef SELECT IfcLibrarySelect;
  654. // C++ wrapper type for IfcLightDistributionDataSourceSelect
  655. typedef SELECT IfcLightDistributionDataSourceSelect;
  656. // C++ wrapper type for IfcMaterialSelect
  657. typedef SELECT IfcMaterialSelect;
  658. // C++ wrapper type for IfcMeasureValue
  659. typedef SELECT IfcMeasureValue;
  660. // C++ wrapper type for IfcMetricValueSelect
  661. typedef SELECT IfcMetricValueSelect;
  662. // C++ wrapper type for IfcObjectReferenceSelect
  663. typedef SELECT IfcObjectReferenceSelect;
  664. // C++ wrapper type for IfcOrientationSelect
  665. typedef SELECT IfcOrientationSelect;
  666. // C++ wrapper type for IfcPointOrVertexPoint
  667. typedef SELECT IfcPointOrVertexPoint;
  668. // C++ wrapper type for IfcPresentationStyleSelect
  669. typedef SELECT IfcPresentationStyleSelect;
  670. // C++ wrapper type for IfcShell
  671. typedef SELECT IfcShell;
  672. // C++ wrapper type for IfcSimpleValue
  673. typedef SELECT IfcSimpleValue;
  674. // C++ wrapper type for IfcSizeSelect
  675. typedef SELECT IfcSizeSelect;
  676. // C++ wrapper type for IfcSpecularHighlightSelect
  677. typedef SELECT IfcSpecularHighlightSelect;
  678. // C++ wrapper type for IfcStructuralActivityAssignmentSelect
  679. typedef SELECT IfcStructuralActivityAssignmentSelect;
  680. // C++ wrapper type for IfcSurfaceOrFaceSurface
  681. typedef SELECT IfcSurfaceOrFaceSurface;
  682. // C++ wrapper type for IfcSurfaceStyleElementSelect
  683. typedef SELECT IfcSurfaceStyleElementSelect;
  684. // C++ wrapper type for IfcSymbolStyleSelect
  685. typedef SELECT IfcSymbolStyleSelect;
  686. // C++ wrapper type for IfcTextFontSelect
  687. typedef SELECT IfcTextFontSelect;
  688. // C++ wrapper type for IfcTextStyleSelect
  689. typedef SELECT IfcTextStyleSelect;
  690. // C++ wrapper type for IfcTrimmingSelect
  691. typedef SELECT IfcTrimmingSelect;
  692. // C++ wrapper type for IfcUnit
  693. typedef SELECT IfcUnit;
  694. // C++ wrapper type for IfcValue
  695. typedef SELECT IfcValue;
  696. // C++ wrapper type for IfcVectorOrDirection
  697. typedef SELECT IfcVectorOrDirection;
  698. // ******************************************************************************
  699. // IFC Entities
  700. // ******************************************************************************
  701. struct IfcRepresentationItem;
  702. struct IfcGeometricRepresentationItem;
  703. struct IfcCurve;
  704. struct IfcBoundedCurve;
  705. struct IfcCompositeCurve;
  706. struct Ifc2DCompositeCurve;
  707. struct IfcRoot;
  708. struct IfcObjectDefinition;
  709. struct IfcObject;
  710. struct IfcControl;
  711. struct IfcActionRequest;
  712. struct IfcActor;
  713. typedef NotImplemented IfcActorRole; // (not currently used by Assimp)
  714. struct IfcTypeObject;
  715. struct IfcTypeProduct;
  716. struct IfcElementType;
  717. struct IfcDistributionElementType;
  718. struct IfcDistributionControlElementType;
  719. struct IfcActuatorType;
  720. typedef NotImplemented IfcAddress; // (not currently used by Assimp)
  721. struct IfcDistributionFlowElementType;
  722. struct IfcFlowControllerType;
  723. struct IfcAirTerminalBoxType;
  724. struct IfcFlowTerminalType;
  725. struct IfcAirTerminalType;
  726. struct IfcEnergyConversionDeviceType;
  727. struct IfcAirToAirHeatRecoveryType;
  728. struct IfcAlarmType;
  729. struct IfcDraughtingCallout;
  730. struct IfcDimensionCurveDirectedCallout;
  731. struct IfcAngularDimension;
  732. struct IfcProduct;
  733. struct IfcAnnotation;
  734. struct IfcStyledItem;
  735. struct IfcAnnotationOccurrence;
  736. struct IfcAnnotationCurveOccurrence;
  737. struct IfcAnnotationFillArea;
  738. struct IfcAnnotationFillAreaOccurrence;
  739. struct IfcAnnotationSurface;
  740. struct IfcAnnotationSurfaceOccurrence;
  741. struct IfcAnnotationSymbolOccurrence;
  742. struct IfcAnnotationTextOccurrence;
  743. typedef NotImplemented IfcApplication; // (not currently used by Assimp)
  744. typedef NotImplemented IfcAppliedValue; // (not currently used by Assimp)
  745. typedef NotImplemented IfcAppliedValueRelationship; // (not currently used by Assimp)
  746. typedef NotImplemented IfcApproval; // (not currently used by Assimp)
  747. typedef NotImplemented IfcApprovalActorRelationship; // (not currently used by Assimp)
  748. typedef NotImplemented IfcApprovalPropertyRelationship; // (not currently used by Assimp)
  749. typedef NotImplemented IfcApprovalRelationship; // (not currently used by Assimp)
  750. struct IfcProfileDef;
  751. struct IfcArbitraryClosedProfileDef;
  752. struct IfcArbitraryOpenProfileDef;
  753. struct IfcArbitraryProfileDefWithVoids;
  754. struct IfcGroup;
  755. struct IfcAsset;
  756. struct IfcParameterizedProfileDef;
  757. struct IfcIShapeProfileDef;
  758. struct IfcAsymmetricIShapeProfileDef;
  759. struct IfcPlacement;
  760. struct IfcAxis1Placement;
  761. struct IfcAxis2Placement2D;
  762. struct IfcAxis2Placement3D;
  763. struct IfcBSplineCurve;
  764. struct IfcElement;
  765. struct IfcBuildingElement;
  766. struct IfcBeam;
  767. struct IfcBuildingElementType;
  768. struct IfcBeamType;
  769. struct IfcBezierCurve;
  770. typedef NotImplemented IfcSurfaceTexture; // (not currently used by Assimp)
  771. typedef NotImplemented IfcBlobTexture; // (not currently used by Assimp)
  772. struct IfcCsgPrimitive3D;
  773. struct IfcBlock;
  774. struct IfcBoilerType;
  775. struct IfcBooleanResult;
  776. struct IfcBooleanClippingResult;
  777. typedef NotImplemented IfcBoundaryCondition; // (not currently used by Assimp)
  778. typedef NotImplemented IfcBoundaryEdgeCondition; // (not currently used by Assimp)
  779. typedef NotImplemented IfcBoundaryFaceCondition; // (not currently used by Assimp)
  780. typedef NotImplemented IfcBoundaryNodeCondition; // (not currently used by Assimp)
  781. typedef NotImplemented IfcBoundaryNodeConditionWarping; // (not currently used by Assimp)
  782. struct IfcSurface;
  783. struct IfcBoundedSurface;
  784. struct IfcBoundingBox;
  785. struct IfcHalfSpaceSolid;
  786. struct IfcBoxedHalfSpace;
  787. struct IfcSpatialStructureElement;
  788. struct IfcBuilding;
  789. struct IfcBuildingElementComponent;
  790. struct IfcBuildingElementPart;
  791. struct IfcBuildingElementProxy;
  792. struct IfcBuildingElementProxyType;
  793. struct IfcBuildingStorey;
  794. struct IfcCShapeProfileDef;
  795. struct IfcFlowFittingType;
  796. struct IfcCableCarrierFittingType;
  797. struct IfcFlowSegmentType;
  798. struct IfcCableCarrierSegmentType;
  799. struct IfcCableSegmentType;
  800. typedef NotImplemented IfcCalendarDate; // (not currently used by Assimp)
  801. struct IfcPoint;
  802. struct IfcCartesianPoint;
  803. struct IfcCartesianTransformationOperator;
  804. struct IfcCartesianTransformationOperator2D;
  805. struct IfcCartesianTransformationOperator2DnonUniform;
  806. struct IfcCartesianTransformationOperator3D;
  807. struct IfcCartesianTransformationOperator3DnonUniform;
  808. struct IfcCenterLineProfileDef;
  809. struct IfcFeatureElement;
  810. struct IfcFeatureElementSubtraction;
  811. struct IfcEdgeFeature;
  812. struct IfcChamferEdgeFeature;
  813. struct IfcChillerType;
  814. struct IfcConic;
  815. struct IfcCircle;
  816. struct IfcCircleProfileDef;
  817. struct IfcCircleHollowProfileDef;
  818. typedef NotImplemented IfcClassification; // (not currently used by Assimp)
  819. typedef NotImplemented IfcClassificationItem; // (not currently used by Assimp)
  820. typedef NotImplemented IfcClassificationItemRelationship; // (not currently used by Assimp)
  821. typedef NotImplemented IfcClassificationNotation; // (not currently used by Assimp)
  822. typedef NotImplemented IfcClassificationNotationFacet; // (not currently used by Assimp)
  823. typedef NotImplemented IfcExternalReference; // (not currently used by Assimp)
  824. typedef NotImplemented IfcClassificationReference; // (not currently used by Assimp)
  825. struct IfcTopologicalRepresentationItem;
  826. struct IfcConnectedFaceSet;
  827. struct IfcClosedShell;
  828. struct IfcCoilType;
  829. struct IfcColourSpecification;
  830. struct IfcColourRgb;
  831. struct IfcColumn;
  832. struct IfcColumnType;
  833. struct IfcProperty;
  834. struct IfcComplexProperty;
  835. struct IfcCompositeCurveSegment;
  836. struct IfcCompositeProfileDef;
  837. struct IfcFlowMovingDeviceType;
  838. struct IfcCompressorType;
  839. struct IfcCondenserType;
  840. struct IfcCondition;
  841. struct IfcConditionCriterion;
  842. typedef NotImplemented IfcConnectionGeometry; // (not currently used by Assimp)
  843. typedef NotImplemented IfcConnectionCurveGeometry; // (not currently used by Assimp)
  844. typedef NotImplemented IfcConnectionPointGeometry; // (not currently used by Assimp)
  845. typedef NotImplemented IfcConnectionPointEccentricity; // (not currently used by Assimp)
  846. typedef NotImplemented IfcConnectionPortGeometry; // (not currently used by Assimp)
  847. typedef NotImplemented IfcConnectionSurfaceGeometry; // (not currently used by Assimp)
  848. typedef NotImplemented IfcConstraint; // (not currently used by Assimp)
  849. typedef NotImplemented IfcConstraintAggregationRelationship; // (not currently used by Assimp)
  850. typedef NotImplemented IfcConstraintClassificationRelationship; // (not currently used by Assimp)
  851. typedef NotImplemented IfcConstraintRelationship; // (not currently used by Assimp)
  852. struct IfcResource;
  853. struct IfcConstructionResource;
  854. struct IfcConstructionEquipmentResource;
  855. struct IfcConstructionMaterialResource;
  856. struct IfcConstructionProductResource;
  857. struct IfcNamedUnit;
  858. struct IfcContextDependentUnit;
  859. struct IfcControllerType;
  860. struct IfcConversionBasedUnit;
  861. struct IfcCooledBeamType;
  862. struct IfcCoolingTowerType;
  863. typedef NotImplemented IfcCoordinatedUniversalTimeOffset; // (not currently used by Assimp)
  864. struct IfcCostItem;
  865. struct IfcCostSchedule;
  866. typedef NotImplemented IfcCostValue; // (not currently used by Assimp)
  867. struct IfcCovering;
  868. struct IfcCoveringType;
  869. struct IfcCraneRailAShapeProfileDef;
  870. struct IfcCraneRailFShapeProfileDef;
  871. struct IfcCrewResource;
  872. struct IfcSolidModel;
  873. struct IfcCsgSolid;
  874. typedef NotImplemented IfcCurrencyRelationship; // (not currently used by Assimp)
  875. struct IfcCurtainWall;
  876. struct IfcCurtainWallType;
  877. struct IfcCurveBoundedPlane;
  878. struct IfcPresentationStyle;
  879. typedef NotImplemented IfcCurveStyle; // (not currently used by Assimp)
  880. typedef NotImplemented IfcCurveStyleFont; // (not currently used by Assimp)
  881. typedef NotImplemented IfcCurveStyleFontAndScaling; // (not currently used by Assimp)
  882. typedef NotImplemented IfcCurveStyleFontPattern; // (not currently used by Assimp)
  883. struct IfcDamperType;
  884. typedef NotImplemented IfcDateAndTime; // (not currently used by Assimp)
  885. struct IfcDefinedSymbol;
  886. struct IfcDerivedProfileDef;
  887. typedef NotImplemented IfcDerivedUnit; // (not currently used by Assimp)
  888. typedef NotImplemented IfcDerivedUnitElement; // (not currently used by Assimp)
  889. struct IfcDiameterDimension;
  890. typedef NotImplemented IfcDraughtingCalloutRelationship; // (not currently used by Assimp)
  891. typedef NotImplemented IfcDimensionCalloutRelationship; // (not currently used by Assimp)
  892. struct IfcDimensionCurve;
  893. struct IfcTerminatorSymbol;
  894. struct IfcDimensionCurveTerminator;
  895. typedef NotImplemented IfcDimensionPair; // (not currently used by Assimp)
  896. typedef NotImplemented IfcDimensionalExponents; // (not currently used by Assimp)
  897. struct IfcDirection;
  898. struct IfcElementComponent;
  899. struct IfcDiscreteAccessory;
  900. struct IfcElementComponentType;
  901. struct IfcDiscreteAccessoryType;
  902. struct IfcDistributionElement;
  903. struct IfcDistributionFlowElement;
  904. struct IfcDistributionChamberElement;
  905. struct IfcDistributionChamberElementType;
  906. struct IfcDistributionControlElement;
  907. struct IfcPort;
  908. struct IfcDistributionPort;
  909. typedef NotImplemented IfcDocumentElectronicFormat; // (not currently used by Assimp)
  910. typedef NotImplemented IfcDocumentInformation; // (not currently used by Assimp)
  911. typedef NotImplemented IfcDocumentInformationRelationship; // (not currently used by Assimp)
  912. typedef NotImplemented IfcDocumentReference; // (not currently used by Assimp)
  913. struct IfcDoor;
  914. struct IfcPropertyDefinition;
  915. struct IfcPropertySetDefinition;
  916. typedef NotImplemented IfcDoorLiningProperties; // (not currently used by Assimp)
  917. typedef NotImplemented IfcDoorPanelProperties; // (not currently used by Assimp)
  918. struct IfcDoorStyle;
  919. typedef NotImplemented IfcPreDefinedItem; // (not currently used by Assimp)
  920. typedef NotImplemented IfcPreDefinedColour; // (not currently used by Assimp)
  921. typedef NotImplemented IfcDraughtingPreDefinedColour; // (not currently used by Assimp)
  922. typedef NotImplemented IfcPreDefinedCurveFont; // (not currently used by Assimp)
  923. typedef NotImplemented IfcDraughtingPreDefinedCurveFont; // (not currently used by Assimp)
  924. typedef NotImplemented IfcPreDefinedTextFont; // (not currently used by Assimp)
  925. typedef NotImplemented IfcDraughtingPreDefinedTextFont; // (not currently used by Assimp)
  926. struct IfcDuctFittingType;
  927. struct IfcDuctSegmentType;
  928. struct IfcFlowTreatmentDeviceType;
  929. struct IfcDuctSilencerType;
  930. struct IfcEdge;
  931. struct IfcEdgeCurve;
  932. struct IfcLoop;
  933. struct IfcEdgeLoop;
  934. struct IfcElectricApplianceType;
  935. struct IfcFlowController;
  936. struct IfcElectricDistributionPoint;
  937. struct IfcFlowStorageDeviceType;
  938. struct IfcElectricFlowStorageDeviceType;
  939. struct IfcElectricGeneratorType;
  940. struct IfcElectricHeaterType;
  941. struct IfcElectricMotorType;
  942. struct IfcElectricTimeControlType;
  943. typedef NotImplemented IfcEnergyProperties; // (not currently used by Assimp)
  944. typedef NotImplemented IfcElectricalBaseProperties; // (not currently used by Assimp)
  945. struct IfcSystem;
  946. struct IfcElectricalCircuit;
  947. struct IfcElectricalElement;
  948. struct IfcElementAssembly;
  949. struct IfcElementQuantity;
  950. struct IfcElementarySurface;
  951. struct IfcEllipse;
  952. struct IfcEllipseProfileDef;
  953. struct IfcEnergyConversionDevice;
  954. typedef NotImplemented IfcEnvironmentalImpactValue; // (not currently used by Assimp)
  955. struct IfcEquipmentElement;
  956. struct IfcEquipmentStandard;
  957. struct IfcEvaporativeCoolerType;
  958. struct IfcEvaporatorType;
  959. typedef NotImplemented IfcMaterialProperties; // (not currently used by Assimp)
  960. typedef NotImplemented IfcExtendedMaterialProperties; // (not currently used by Assimp)
  961. typedef NotImplemented IfcExternallyDefinedHatchStyle; // (not currently used by Assimp)
  962. typedef NotImplemented IfcExternallyDefinedSurfaceStyle; // (not currently used by Assimp)
  963. typedef NotImplemented IfcExternallyDefinedSymbol; // (not currently used by Assimp)
  964. typedef NotImplemented IfcExternallyDefinedTextFont; // (not currently used by Assimp)
  965. struct IfcSweptAreaSolid;
  966. struct IfcExtrudedAreaSolid;
  967. struct IfcFace;
  968. struct IfcFaceBasedSurfaceModel;
  969. struct IfcFaceBound;
  970. struct IfcFaceOuterBound;
  971. struct IfcFaceSurface;
  972. struct IfcManifoldSolidBrep;
  973. struct IfcFacetedBrep;
  974. struct IfcFacetedBrepWithVoids;
  975. typedef NotImplemented IfcStructuralConnectionCondition; // (not currently used by Assimp)
  976. typedef NotImplemented IfcFailureConnectionCondition; // (not currently used by Assimp)
  977. struct IfcFanType;
  978. struct IfcFastener;
  979. struct IfcFastenerType;
  980. struct IfcFeatureElementAddition;
  981. typedef NotImplemented IfcFillAreaStyle; // (not currently used by Assimp)
  982. struct IfcFillAreaStyleHatching;
  983. struct IfcFillAreaStyleTileSymbolWithStyle;
  984. struct IfcFillAreaStyleTiles;
  985. struct IfcFilterType;
  986. struct IfcFireSuppressionTerminalType;
  987. struct IfcFlowFitting;
  988. struct IfcFlowInstrumentType;
  989. struct IfcFlowMeterType;
  990. struct IfcFlowMovingDevice;
  991. struct IfcFlowSegment;
  992. struct IfcFlowStorageDevice;
  993. struct IfcFlowTerminal;
  994. struct IfcFlowTreatmentDevice;
  995. typedef NotImplemented IfcFluidFlowProperties; // (not currently used by Assimp)
  996. struct IfcFooting;
  997. typedef NotImplemented IfcFuelProperties; // (not currently used by Assimp)
  998. struct IfcFurnishingElement;
  999. struct IfcFurnishingElementType;
  1000. struct IfcFurnitureStandard;
  1001. struct IfcFurnitureType;
  1002. struct IfcGasTerminalType;
  1003. typedef NotImplemented IfcGeneralMaterialProperties; // (not currently used by Assimp)
  1004. typedef NotImplemented IfcProfileProperties; // (not currently used by Assimp)
  1005. typedef NotImplemented IfcGeneralProfileProperties; // (not currently used by Assimp)
  1006. struct IfcGeometricSet;
  1007. struct IfcGeometricCurveSet;
  1008. struct IfcRepresentationContext;
  1009. struct IfcGeometricRepresentationContext;
  1010. struct IfcGeometricRepresentationSubContext;
  1011. struct IfcGrid;
  1012. typedef NotImplemented IfcGridAxis; // (not currently used by Assimp)
  1013. struct IfcObjectPlacement;
  1014. struct IfcGridPlacement;
  1015. struct IfcHeatExchangerType;
  1016. struct IfcHumidifierType;
  1017. typedef NotImplemented IfcHygroscopicMaterialProperties; // (not currently used by Assimp)
  1018. typedef NotImplemented IfcImageTexture; // (not currently used by Assimp)
  1019. struct IfcInventory;
  1020. typedef NotImplemented IfcTimeSeries; // (not currently used by Assimp)
  1021. typedef NotImplemented IfcIrregularTimeSeries; // (not currently used by Assimp)
  1022. typedef NotImplemented IfcIrregularTimeSeriesValue; // (not currently used by Assimp)
  1023. struct IfcJunctionBoxType;
  1024. struct IfcLShapeProfileDef;
  1025. struct IfcLaborResource;
  1026. struct IfcLampType;
  1027. typedef NotImplemented IfcLibraryInformation; // (not currently used by Assimp)
  1028. typedef NotImplemented IfcLibraryReference; // (not currently used by Assimp)
  1029. typedef NotImplemented IfcLightDistributionData; // (not currently used by Assimp)
  1030. struct IfcLightFixtureType;
  1031. typedef NotImplemented IfcLightIntensityDistribution; // (not currently used by Assimp)
  1032. struct IfcLightSource;
  1033. struct IfcLightSourceAmbient;
  1034. struct IfcLightSourceDirectional;
  1035. struct IfcLightSourceGoniometric;
  1036. struct IfcLightSourcePositional;
  1037. struct IfcLightSourceSpot;
  1038. struct IfcLine;
  1039. struct IfcLinearDimension;
  1040. struct IfcLocalPlacement;
  1041. typedef NotImplemented IfcLocalTime; // (not currently used by Assimp)
  1042. struct IfcMappedItem;
  1043. typedef NotImplemented IfcMaterial; // (not currently used by Assimp)
  1044. typedef NotImplemented IfcMaterialClassificationRelationship; // (not currently used by Assimp)
  1045. struct IfcProductRepresentation;
  1046. struct IfcMaterialDefinitionRepresentation;
  1047. typedef NotImplemented IfcMaterialLayer; // (not currently used by Assimp)
  1048. typedef NotImplemented IfcMaterialLayerSet; // (not currently used by Assimp)
  1049. typedef NotImplemented IfcMaterialLayerSetUsage; // (not currently used by Assimp)
  1050. typedef NotImplemented IfcMaterialList; // (not currently used by Assimp)
  1051. struct IfcMeasureWithUnit;
  1052. typedef NotImplemented IfcMechanicalMaterialProperties; // (not currently used by Assimp)
  1053. typedef NotImplemented IfcMechanicalConcreteMaterialProperties; // (not currently used by Assimp)
  1054. struct IfcMechanicalFastener;
  1055. struct IfcMechanicalFastenerType;
  1056. typedef NotImplemented IfcMechanicalSteelMaterialProperties; // (not currently used by Assimp)
  1057. struct IfcMember;
  1058. struct IfcMemberType;
  1059. typedef NotImplemented IfcMetric; // (not currently used by Assimp)
  1060. typedef NotImplemented IfcMonetaryUnit; // (not currently used by Assimp)
  1061. struct IfcMotorConnectionType;
  1062. struct IfcProcess;
  1063. struct IfcTask;
  1064. struct IfcMove;
  1065. typedef NotImplemented IfcObjective; // (not currently used by Assimp)
  1066. struct IfcOccupant;
  1067. struct IfcOffsetCurve2D;
  1068. struct IfcOffsetCurve3D;
  1069. struct IfcOneDirectionRepeatFactor;
  1070. struct IfcOpenShell;
  1071. struct IfcOpeningElement;
  1072. typedef NotImplemented IfcOpticalMaterialProperties; // (not currently used by Assimp)
  1073. struct IfcOrderAction;
  1074. typedef NotImplemented IfcOrganization; // (not currently used by Assimp)
  1075. typedef NotImplemented IfcOrganizationRelationship; // (not currently used by Assimp)
  1076. struct IfcOrientedEdge;
  1077. struct IfcOutletType;
  1078. typedef NotImplemented IfcOwnerHistory; // (not currently used by Assimp)
  1079. struct IfcPath;
  1080. struct IfcPerformanceHistory;
  1081. typedef NotImplemented IfcPermeableCoveringProperties; // (not currently used by Assimp)
  1082. struct IfcPermit;
  1083. typedef NotImplemented IfcPerson; // (not currently used by Assimp)
  1084. typedef NotImplemented IfcPersonAndOrganization; // (not currently used by Assimp)
  1085. typedef NotImplemented IfcPhysicalQuantity; // (not currently used by Assimp)
  1086. typedef NotImplemented IfcPhysicalComplexQuantity; // (not currently used by Assimp)
  1087. typedef NotImplemented IfcPhysicalSimpleQuantity; // (not currently used by Assimp)
  1088. struct IfcPile;
  1089. struct IfcPipeFittingType;
  1090. struct IfcPipeSegmentType;
  1091. typedef NotImplemented IfcPixelTexture; // (not currently used by Assimp)
  1092. struct IfcPlanarExtent;
  1093. struct IfcPlanarBox;
  1094. struct IfcPlane;
  1095. struct IfcPlate;
  1096. struct IfcPlateType;
  1097. struct IfcPointOnCurve;
  1098. struct IfcPointOnSurface;
  1099. struct IfcPolyLoop;
  1100. struct IfcPolygonalBoundedHalfSpace;
  1101. struct IfcPolyline;
  1102. typedef NotImplemented IfcPostalAddress; // (not currently used by Assimp)
  1103. typedef NotImplemented IfcPreDefinedSymbol; // (not currently used by Assimp)
  1104. typedef NotImplemented IfcPreDefinedDimensionSymbol; // (not currently used by Assimp)
  1105. typedef NotImplemented IfcPreDefinedPointMarkerSymbol; // (not currently used by Assimp)
  1106. typedef NotImplemented IfcPreDefinedTerminatorSymbol; // (not currently used by Assimp)
  1107. typedef NotImplemented IfcPresentationLayerAssignment; // (not currently used by Assimp)
  1108. typedef NotImplemented IfcPresentationLayerWithStyle; // (not currently used by Assimp)
  1109. struct IfcPresentationStyleAssignment;
  1110. struct IfcProcedure;
  1111. struct IfcProductDefinitionShape;
  1112. typedef NotImplemented IfcProductsOfCombustionProperties; // (not currently used by Assimp)
  1113. struct IfcProject;
  1114. struct IfcProjectOrder;
  1115. struct IfcProjectOrderRecord;
  1116. struct IfcProjectionCurve;
  1117. struct IfcProjectionElement;
  1118. struct IfcSimpleProperty;
  1119. struct IfcPropertyBoundedValue;
  1120. typedef NotImplemented IfcPropertyConstraintRelationship; // (not currently used by Assimp)
  1121. typedef NotImplemented IfcPropertyDependencyRelationship; // (not currently used by Assimp)
  1122. struct IfcPropertyEnumeratedValue;
  1123. typedef NotImplemented IfcPropertyEnumeration; // (not currently used by Assimp)
  1124. struct IfcPropertyListValue;
  1125. struct IfcPropertyReferenceValue;
  1126. struct IfcPropertySet;
  1127. struct IfcPropertySingleValue;
  1128. struct IfcPropertyTableValue;
  1129. struct IfcProtectiveDeviceType;
  1130. struct IfcProxy;
  1131. struct IfcPumpType;
  1132. typedef NotImplemented IfcQuantityArea; // (not currently used by Assimp)
  1133. typedef NotImplemented IfcQuantityCount; // (not currently used by Assimp)
  1134. typedef NotImplemented IfcQuantityLength; // (not currently used by Assimp)
  1135. typedef NotImplemented IfcQuantityTime; // (not currently used by Assimp)
  1136. typedef NotImplemented IfcQuantityVolume; // (not currently used by Assimp)
  1137. typedef NotImplemented IfcQuantityWeight; // (not currently used by Assimp)
  1138. struct IfcRadiusDimension;
  1139. struct IfcRailing;
  1140. struct IfcRailingType;
  1141. struct IfcRamp;
  1142. struct IfcRampFlight;
  1143. struct IfcRampFlightType;
  1144. struct IfcRationalBezierCurve;
  1145. struct IfcRectangleProfileDef;
  1146. struct IfcRectangleHollowProfileDef;
  1147. struct IfcRectangularPyramid;
  1148. struct IfcRectangularTrimmedSurface;
  1149. typedef NotImplemented IfcReferencesValueDocument; // (not currently used by Assimp)
  1150. typedef NotImplemented IfcRegularTimeSeries; // (not currently used by Assimp)
  1151. typedef NotImplemented IfcReinforcementBarProperties; // (not currently used by Assimp)
  1152. typedef NotImplemented IfcReinforcementDefinitionProperties; // (not currently used by Assimp)
  1153. struct IfcReinforcingElement;
  1154. struct IfcReinforcingBar;
  1155. struct IfcReinforcingMesh;
  1156. struct IfcRelationship;
  1157. struct IfcRelDecomposes;
  1158. struct IfcRelAggregates;
  1159. typedef NotImplemented IfcRelAssigns; // (not currently used by Assimp)
  1160. typedef NotImplemented IfcRelAssignsToControl; // (not currently used by Assimp)
  1161. typedef NotImplemented IfcRelAssignsTasks; // (not currently used by Assimp)
  1162. typedef NotImplemented IfcRelAssignsToActor; // (not currently used by Assimp)
  1163. typedef NotImplemented IfcRelAssignsToGroup; // (not currently used by Assimp)
  1164. typedef NotImplemented IfcRelAssignsToProcess; // (not currently used by Assimp)
  1165. typedef NotImplemented IfcRelAssignsToProduct; // (not currently used by Assimp)
  1166. typedef NotImplemented IfcRelAssignsToProjectOrder; // (not currently used by Assimp)
  1167. typedef NotImplemented IfcRelAssignsToResource; // (not currently used by Assimp)
  1168. typedef NotImplemented IfcRelAssociates; // (not currently used by Assimp)
  1169. typedef NotImplemented IfcRelAssociatesAppliedValue; // (not currently used by Assimp)
  1170. typedef NotImplemented IfcRelAssociatesApproval; // (not currently used by Assimp)
  1171. typedef NotImplemented IfcRelAssociatesClassification; // (not currently used by Assimp)
  1172. typedef NotImplemented IfcRelAssociatesConstraint; // (not currently used by Assimp)
  1173. typedef NotImplemented IfcRelAssociatesDocument; // (not currently used by Assimp)
  1174. typedef NotImplemented IfcRelAssociatesLibrary; // (not currently used by Assimp)
  1175. typedef NotImplemented IfcRelAssociatesMaterial; // (not currently used by Assimp)
  1176. typedef NotImplemented IfcRelAssociatesProfileProperties; // (not currently used by Assimp)
  1177. struct IfcRelConnects;
  1178. typedef NotImplemented IfcRelConnectsElements; // (not currently used by Assimp)
  1179. typedef NotImplemented IfcRelConnectsPathElements; // (not currently used by Assimp)
  1180. typedef NotImplemented IfcRelConnectsPortToElement; // (not currently used by Assimp)
  1181. typedef NotImplemented IfcRelConnectsPorts; // (not currently used by Assimp)
  1182. typedef NotImplemented IfcRelConnectsStructuralActivity; // (not currently used by Assimp)
  1183. typedef NotImplemented IfcRelConnectsStructuralElement; // (not currently used by Assimp)
  1184. typedef NotImplemented IfcRelConnectsStructuralMember; // (not currently used by Assimp)
  1185. typedef NotImplemented IfcRelConnectsWithEccentricity; // (not currently used by Assimp)
  1186. typedef NotImplemented IfcRelConnectsWithRealizingElements; // (not currently used by Assimp)
  1187. struct IfcRelContainedInSpatialStructure;
  1188. typedef NotImplemented IfcRelCoversBldgElements; // (not currently used by Assimp)
  1189. typedef NotImplemented IfcRelCoversSpaces; // (not currently used by Assimp)
  1190. struct IfcRelDefines;
  1191. struct IfcRelDefinesByProperties;
  1192. typedef NotImplemented IfcRelDefinesByType; // (not currently used by Assimp)
  1193. struct IfcRelFillsElement;
  1194. typedef NotImplemented IfcRelFlowControlElements; // (not currently used by Assimp)
  1195. typedef NotImplemented IfcRelInteractionRequirements; // (not currently used by Assimp)
  1196. typedef NotImplemented IfcRelNests; // (not currently used by Assimp)
  1197. typedef NotImplemented IfcRelOccupiesSpaces; // (not currently used by Assimp)
  1198. struct IfcRelOverridesProperties;
  1199. typedef NotImplemented IfcRelProjectsElement; // (not currently used by Assimp)
  1200. typedef NotImplemented IfcRelReferencedInSpatialStructure; // (not currently used by Assimp)
  1201. typedef NotImplemented IfcRelSchedulesCostItems; // (not currently used by Assimp)
  1202. typedef NotImplemented IfcRelSequence; // (not currently used by Assimp)
  1203. typedef NotImplemented IfcRelServicesBuildings; // (not currently used by Assimp)
  1204. typedef NotImplemented IfcRelSpaceBoundary; // (not currently used by Assimp)
  1205. struct IfcRelVoidsElement;
  1206. typedef NotImplemented IfcRelaxation; // (not currently used by Assimp)
  1207. struct IfcRepresentation;
  1208. struct IfcRepresentationMap;
  1209. struct IfcRevolvedAreaSolid;
  1210. typedef NotImplemented IfcRibPlateProfileProperties; // (not currently used by Assimp)
  1211. struct IfcRightCircularCone;
  1212. struct IfcRightCircularCylinder;
  1213. struct IfcRoof;
  1214. struct IfcRoundedEdgeFeature;
  1215. struct IfcRoundedRectangleProfileDef;
  1216. struct IfcSIUnit;
  1217. struct IfcSanitaryTerminalType;
  1218. struct IfcScheduleTimeControl;
  1219. typedef NotImplemented IfcSectionProperties; // (not currently used by Assimp)
  1220. typedef NotImplemented IfcSectionReinforcementProperties; // (not currently used by Assimp)
  1221. struct IfcSectionedSpine;
  1222. struct IfcSensorType;
  1223. struct IfcServiceLife;
  1224. typedef NotImplemented IfcServiceLifeFactor; // (not currently used by Assimp)
  1225. typedef NotImplemented IfcShapeAspect; // (not currently used by Assimp)
  1226. struct IfcShapeModel;
  1227. struct IfcShapeRepresentation;
  1228. struct IfcShellBasedSurfaceModel;
  1229. struct IfcSite;
  1230. struct IfcSlab;
  1231. struct IfcSlabType;
  1232. typedef NotImplemented IfcSlippageConnectionCondition; // (not currently used by Assimp)
  1233. typedef NotImplemented IfcSoundProperties; // (not currently used by Assimp)
  1234. typedef NotImplemented IfcSoundValue; // (not currently used by Assimp)
  1235. struct IfcSpace;
  1236. struct IfcSpaceHeaterType;
  1237. struct IfcSpaceProgram;
  1238. typedef NotImplemented IfcSpaceThermalLoadProperties; // (not currently used by Assimp)
  1239. struct IfcSpatialStructureElementType;
  1240. struct IfcSpaceType;
  1241. struct IfcSphere;
  1242. struct IfcStackTerminalType;
  1243. struct IfcStair;
  1244. struct IfcStairFlight;
  1245. struct IfcStairFlightType;
  1246. struct IfcStructuralActivity;
  1247. struct IfcStructuralAction;
  1248. struct IfcStructuralAnalysisModel;
  1249. struct IfcStructuralItem;
  1250. struct IfcStructuralConnection;
  1251. struct IfcStructuralCurveConnection;
  1252. struct IfcStructuralMember;
  1253. struct IfcStructuralCurveMember;
  1254. struct IfcStructuralCurveMemberVarying;
  1255. struct IfcStructuralLinearAction;
  1256. struct IfcStructuralLinearActionVarying;
  1257. typedef NotImplemented IfcStructuralLoad; // (not currently used by Assimp)
  1258. struct IfcStructuralLoadGroup;
  1259. typedef NotImplemented IfcStructuralLoadStatic; // (not currently used by Assimp)
  1260. typedef NotImplemented IfcStructuralLoadLinearForce; // (not currently used by Assimp)
  1261. typedef NotImplemented IfcStructuralLoadPlanarForce; // (not currently used by Assimp)
  1262. typedef NotImplemented IfcStructuralLoadSingleDisplacement; // (not currently used by Assimp)
  1263. typedef NotImplemented IfcStructuralLoadSingleDisplacementDistortion; // (not currently used by Assimp)
  1264. typedef NotImplemented IfcStructuralLoadSingleForce; // (not currently used by Assimp)
  1265. typedef NotImplemented IfcStructuralLoadSingleForceWarping; // (not currently used by Assimp)
  1266. typedef NotImplemented IfcStructuralLoadTemperature; // (not currently used by Assimp)
  1267. struct IfcStructuralPlanarAction;
  1268. struct IfcStructuralPlanarActionVarying;
  1269. struct IfcStructuralPointAction;
  1270. struct IfcStructuralPointConnection;
  1271. struct IfcStructuralReaction;
  1272. struct IfcStructuralPointReaction;
  1273. typedef NotImplemented IfcStructuralProfileProperties; // (not currently used by Assimp)
  1274. struct IfcStructuralResultGroup;
  1275. typedef NotImplemented IfcStructuralSteelProfileProperties; // (not currently used by Assimp)
  1276. struct IfcStructuralSurfaceConnection;
  1277. struct IfcStructuralSurfaceMember;
  1278. struct IfcStructuralSurfaceMemberVarying;
  1279. struct IfcStructuredDimensionCallout;
  1280. struct IfcStyleModel;
  1281. struct IfcStyledRepresentation;
  1282. struct IfcSubContractResource;
  1283. struct IfcSubedge;
  1284. struct IfcSurfaceCurveSweptAreaSolid;
  1285. struct IfcSweptSurface;
  1286. struct IfcSurfaceOfLinearExtrusion;
  1287. struct IfcSurfaceOfRevolution;
  1288. struct IfcSurfaceStyle;
  1289. typedef NotImplemented IfcSurfaceStyleLighting; // (not currently used by Assimp)
  1290. typedef NotImplemented IfcSurfaceStyleRefraction; // (not currently used by Assimp)
  1291. struct IfcSurfaceStyleShading;
  1292. struct IfcSurfaceStyleRendering;
  1293. struct IfcSurfaceStyleWithTextures;
  1294. struct IfcSweptDiskSolid;
  1295. struct IfcSwitchingDeviceType;
  1296. typedef NotImplemented IfcSymbolStyle; // (not currently used by Assimp)
  1297. struct IfcSystemFurnitureElementType;
  1298. struct IfcTShapeProfileDef;
  1299. typedef NotImplemented IfcTable; // (not currently used by Assimp)
  1300. typedef NotImplemented IfcTableRow; // (not currently used by Assimp)
  1301. struct IfcTankType;
  1302. typedef NotImplemented IfcTelecomAddress; // (not currently used by Assimp)
  1303. struct IfcTendon;
  1304. struct IfcTendonAnchor;
  1305. struct IfcTextLiteral;
  1306. struct IfcTextLiteralWithExtent;
  1307. typedef NotImplemented IfcTextStyle; // (not currently used by Assimp)
  1308. typedef NotImplemented IfcTextStyleFontModel; // (not currently used by Assimp)
  1309. typedef NotImplemented IfcTextStyleForDefinedFont; // (not currently used by Assimp)
  1310. typedef NotImplemented IfcTextStyleTextModel; // (not currently used by Assimp)
  1311. typedef NotImplemented IfcTextStyleWithBoxCharacteristics; // (not currently used by Assimp)
  1312. typedef NotImplemented IfcTextureCoordinate; // (not currently used by Assimp)
  1313. typedef NotImplemented IfcTextureCoordinateGenerator; // (not currently used by Assimp)
  1314. typedef NotImplemented IfcTextureMap; // (not currently used by Assimp)
  1315. typedef NotImplemented IfcTextureVertex; // (not currently used by Assimp)
  1316. typedef NotImplemented IfcThermalMaterialProperties; // (not currently used by Assimp)
  1317. typedef NotImplemented IfcTimeSeriesReferenceRelationship; // (not currently used by Assimp)
  1318. struct IfcTimeSeriesSchedule;
  1319. typedef NotImplemented IfcTimeSeriesValue; // (not currently used by Assimp)
  1320. struct IfcTopologyRepresentation;
  1321. struct IfcTransformerType;
  1322. struct IfcTransportElement;
  1323. struct IfcTransportElementType;
  1324. struct IfcTrapeziumProfileDef;
  1325. struct IfcTrimmedCurve;
  1326. struct IfcTubeBundleType;
  1327. struct IfcTwoDirectionRepeatFactor;
  1328. struct IfcUShapeProfileDef;
  1329. struct IfcUnitAssignment;
  1330. struct IfcUnitaryEquipmentType;
  1331. struct IfcValveType;
  1332. struct IfcVector;
  1333. struct IfcVertex;
  1334. typedef NotImplemented IfcVertexBasedTextureMap; // (not currently used by Assimp)
  1335. struct IfcVertexLoop;
  1336. struct IfcVertexPoint;
  1337. struct IfcVibrationIsolatorType;
  1338. struct IfcVirtualElement;
  1339. typedef NotImplemented IfcVirtualGridIntersection; // (not currently used by Assimp)
  1340. struct IfcWall;
  1341. struct IfcWallStandardCase;
  1342. struct IfcWallType;
  1343. struct IfcWasteTerminalType;
  1344. typedef NotImplemented IfcWaterProperties; // (not currently used by Assimp)
  1345. struct IfcWindow;
  1346. typedef NotImplemented IfcWindowLiningProperties; // (not currently used by Assimp)
  1347. typedef NotImplemented IfcWindowPanelProperties; // (not currently used by Assimp)
  1348. struct IfcWindowStyle;
  1349. struct IfcWorkControl;
  1350. struct IfcWorkPlan;
  1351. struct IfcWorkSchedule;
  1352. struct IfcZShapeProfileDef;
  1353. struct IfcZone;
  1354. // C++ wrapper for IfcRepresentationItem
  1355. struct IfcRepresentationItem : ObjectHelper<IfcRepresentationItem,0> { IfcRepresentationItem() : Object("IfcRepresentationItem") {}
  1356. };
  1357. // C++ wrapper for IfcGeometricRepresentationItem
  1358. struct IfcGeometricRepresentationItem : IfcRepresentationItem, ObjectHelper<IfcGeometricRepresentationItem,0> { IfcGeometricRepresentationItem() : Object("IfcGeometricRepresentationItem") {}
  1359. };
  1360. // C++ wrapper for IfcCurve
  1361. struct IfcCurve : IfcGeometricRepresentationItem, ObjectHelper<IfcCurve,0> { IfcCurve() : Object("IfcCurve") {}
  1362. };
  1363. // C++ wrapper for IfcBoundedCurve
  1364. struct IfcBoundedCurve : IfcCurve, ObjectHelper<IfcBoundedCurve,0> { IfcBoundedCurve() : Object("IfcBoundedCurve") {}
  1365. };
  1366. // C++ wrapper for IfcCompositeCurve
  1367. struct IfcCompositeCurve : IfcBoundedCurve, ObjectHelper<IfcCompositeCurve,2> { IfcCompositeCurve() : Object("IfcCompositeCurve") {}
  1368. ListOf< Lazy< IfcCompositeCurveSegment >, 1, 0 > Segments;
  1369. LOGICAL::Out SelfIntersect;
  1370. };
  1371. // C++ wrapper for Ifc2DCompositeCurve
  1372. struct Ifc2DCompositeCurve : IfcCompositeCurve, ObjectHelper<Ifc2DCompositeCurve,0> { Ifc2DCompositeCurve() : Object("Ifc2DCompositeCurve") {}
  1373. };
  1374. // C++ wrapper for IfcRoot
  1375. struct IfcRoot : ObjectHelper<IfcRoot,4> { IfcRoot() : Object("IfcRoot") {}
  1376. IfcGloballyUniqueId::Out GlobalId;
  1377. Lazy< NotImplemented > OwnerHistory;
  1378. Maybe< IfcLabel::Out > Name;
  1379. Maybe< IfcText::Out > Description;
  1380. };
  1381. // C++ wrapper for IfcObjectDefinition
  1382. struct IfcObjectDefinition : IfcRoot, ObjectHelper<IfcObjectDefinition,0> { IfcObjectDefinition() : Object("IfcObjectDefinition") {}
  1383. };
  1384. // C++ wrapper for IfcObject
  1385. struct IfcObject : IfcObjectDefinition, ObjectHelper<IfcObject,1> { IfcObject() : Object("IfcObject") {}
  1386. Maybe< IfcLabel::Out > ObjectType;
  1387. };
  1388. // C++ wrapper for IfcControl
  1389. struct IfcControl : IfcObject, ObjectHelper<IfcControl,0> { IfcControl() : Object("IfcControl") {}
  1390. };
  1391. // C++ wrapper for IfcActionRequest
  1392. struct IfcActionRequest : IfcControl, ObjectHelper<IfcActionRequest,1> { IfcActionRequest() : Object("IfcActionRequest") {}
  1393. IfcIdentifier::Out RequestID;
  1394. };
  1395. // C++ wrapper for IfcActor
  1396. struct IfcActor : IfcObject, ObjectHelper<IfcActor,1> { IfcActor() : Object("IfcActor") {}
  1397. IfcActorSelect::Out TheActor;
  1398. };
  1399. // C++ wrapper for IfcTypeObject
  1400. struct IfcTypeObject : IfcObjectDefinition, ObjectHelper<IfcTypeObject,2> { IfcTypeObject() : Object("IfcTypeObject") {}
  1401. Maybe< IfcLabel::Out > ApplicableOccurrence;
  1402. Maybe< ListOf< Lazy< IfcPropertySetDefinition >, 1, 0 > > HasPropertySets;
  1403. };
  1404. // C++ wrapper for IfcTypeProduct
  1405. struct IfcTypeProduct : IfcTypeObject, ObjectHelper<IfcTypeProduct,2> { IfcTypeProduct() : Object("IfcTypeProduct") {}
  1406. Maybe< ListOf< Lazy< IfcRepresentationMap >, 1, 0 > > RepresentationMaps;
  1407. Maybe< IfcLabel::Out > Tag;
  1408. };
  1409. // C++ wrapper for IfcElementType
  1410. struct IfcElementType : IfcTypeProduct, ObjectHelper<IfcElementType,1> { IfcElementType() : Object("IfcElementType") {}
  1411. Maybe< IfcLabel::Out > ElementType;
  1412. };
  1413. // C++ wrapper for IfcDistributionElementType
  1414. struct IfcDistributionElementType : IfcElementType, ObjectHelper<IfcDistributionElementType,0> { IfcDistributionElementType() : Object("IfcDistributionElementType") {}
  1415. };
  1416. // C++ wrapper for IfcDistributionControlElementType
  1417. struct IfcDistributionControlElementType : IfcDistributionElementType, ObjectHelper<IfcDistributionControlElementType,0> { IfcDistributionControlElementType() : Object("IfcDistributionControlElementType") {}
  1418. };
  1419. // C++ wrapper for IfcActuatorType
  1420. struct IfcActuatorType : IfcDistributionControlElementType, ObjectHelper<IfcActuatorType,1> { IfcActuatorType() : Object("IfcActuatorType") {}
  1421. IfcActuatorTypeEnum::Out PredefinedType;
  1422. };
  1423. // C++ wrapper for IfcDistributionFlowElementType
  1424. struct IfcDistributionFlowElementType : IfcDistributionElementType, ObjectHelper<IfcDistributionFlowElementType,0> { IfcDistributionFlowElementType() : Object("IfcDistributionFlowElementType") {}
  1425. };
  1426. // C++ wrapper for IfcFlowControllerType
  1427. struct IfcFlowControllerType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowControllerType,0> { IfcFlowControllerType() : Object("IfcFlowControllerType") {}
  1428. };
  1429. // C++ wrapper for IfcAirTerminalBoxType
  1430. struct IfcAirTerminalBoxType : IfcFlowControllerType, ObjectHelper<IfcAirTerminalBoxType,1> { IfcAirTerminalBoxType() : Object("IfcAirTerminalBoxType") {}
  1431. IfcAirTerminalBoxTypeEnum::Out PredefinedType;
  1432. };
  1433. // C++ wrapper for IfcFlowTerminalType
  1434. struct IfcFlowTerminalType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowTerminalType,0> { IfcFlowTerminalType() : Object("IfcFlowTerminalType") {}
  1435. };
  1436. // C++ wrapper for IfcAirTerminalType
  1437. struct IfcAirTerminalType : IfcFlowTerminalType, ObjectHelper<IfcAirTerminalType,1> { IfcAirTerminalType() : Object("IfcAirTerminalType") {}
  1438. IfcAirTerminalTypeEnum::Out PredefinedType;
  1439. };
  1440. // C++ wrapper for IfcEnergyConversionDeviceType
  1441. struct IfcEnergyConversionDeviceType : IfcDistributionFlowElementType, ObjectHelper<IfcEnergyConversionDeviceType,0> { IfcEnergyConversionDeviceType() : Object("IfcEnergyConversionDeviceType") {}
  1442. };
  1443. // C++ wrapper for IfcAirToAirHeatRecoveryType
  1444. struct IfcAirToAirHeatRecoveryType : IfcEnergyConversionDeviceType, ObjectHelper<IfcAirToAirHeatRecoveryType,1> { IfcAirToAirHeatRecoveryType() : Object("IfcAirToAirHeatRecoveryType") {}
  1445. IfcAirToAirHeatRecoveryTypeEnum::Out PredefinedType;
  1446. };
  1447. // C++ wrapper for IfcAlarmType
  1448. struct IfcAlarmType : IfcDistributionControlElementType, ObjectHelper<IfcAlarmType,1> { IfcAlarmType() : Object("IfcAlarmType") {}
  1449. IfcAlarmTypeEnum::Out PredefinedType;
  1450. };
  1451. // C++ wrapper for IfcDraughtingCallout
  1452. struct IfcDraughtingCallout : IfcGeometricRepresentationItem, ObjectHelper<IfcDraughtingCallout,1> { IfcDraughtingCallout() : Object("IfcDraughtingCallout") {}
  1453. ListOf< IfcDraughtingCalloutElement, 1, 0 >::Out Contents;
  1454. };
  1455. // C++ wrapper for IfcDimensionCurveDirectedCallout
  1456. struct IfcDimensionCurveDirectedCallout : IfcDraughtingCallout, ObjectHelper<IfcDimensionCurveDirectedCallout,0> { IfcDimensionCurveDirectedCallout() : Object("IfcDimensionCurveDirectedCallout") {}
  1457. };
  1458. // C++ wrapper for IfcAngularDimension
  1459. struct IfcAngularDimension : IfcDimensionCurveDirectedCallout, ObjectHelper<IfcAngularDimension,0> { IfcAngularDimension() : Object("IfcAngularDimension") {}
  1460. };
  1461. // C++ wrapper for IfcProduct
  1462. struct IfcProduct : IfcObject, ObjectHelper<IfcProduct,2> { IfcProduct() : Object("IfcProduct") {}
  1463. Maybe< Lazy< IfcObjectPlacement > > ObjectPlacement;
  1464. Maybe< Lazy< IfcProductRepresentation > > Representation;
  1465. };
  1466. // C++ wrapper for IfcAnnotation
  1467. struct IfcAnnotation : IfcProduct, ObjectHelper<IfcAnnotation,0> { IfcAnnotation() : Object("IfcAnnotation") {}
  1468. };
  1469. // C++ wrapper for IfcStyledItem
  1470. struct IfcStyledItem : IfcRepresentationItem, ObjectHelper<IfcStyledItem,3> { IfcStyledItem() : Object("IfcStyledItem") {}
  1471. Maybe< Lazy< IfcRepresentationItem > > Item;
  1472. ListOf< Lazy< IfcPresentationStyleAssignment >, 1, 0 > Styles;
  1473. Maybe< IfcLabel::Out > Name;
  1474. };
  1475. // C++ wrapper for IfcAnnotationOccurrence
  1476. struct IfcAnnotationOccurrence : IfcStyledItem, ObjectHelper<IfcAnnotationOccurrence,0> { IfcAnnotationOccurrence() : Object("IfcAnnotationOccurrence") {}
  1477. };
  1478. // C++ wrapper for IfcAnnotationCurveOccurrence
  1479. struct IfcAnnotationCurveOccurrence : IfcAnnotationOccurrence, ObjectHelper<IfcAnnotationCurveOccurrence,0> { IfcAnnotationCurveOccurrence() : Object("IfcAnnotationCurveOccurrence") {}
  1480. };
  1481. // C++ wrapper for IfcAnnotationFillArea
  1482. struct IfcAnnotationFillArea : IfcGeometricRepresentationItem, ObjectHelper<IfcAnnotationFillArea,2> { IfcAnnotationFillArea() : Object("IfcAnnotationFillArea") {}
  1483. Lazy< IfcCurve > OuterBoundary;
  1484. Maybe< ListOf< Lazy< IfcCurve >, 1, 0 > > InnerBoundaries;
  1485. };
  1486. // C++ wrapper for IfcAnnotationFillAreaOccurrence
  1487. struct IfcAnnotationFillAreaOccurrence : IfcAnnotationOccurrence, ObjectHelper<IfcAnnotationFillAreaOccurrence,2> { IfcAnnotationFillAreaOccurrence() : Object("IfcAnnotationFillAreaOccurrence") {}
  1488. Maybe< Lazy< IfcPoint > > FillStyleTarget;
  1489. Maybe< IfcGlobalOrLocalEnum::Out > GlobalOrLocal;
  1490. };
  1491. // C++ wrapper for IfcAnnotationSurface
  1492. struct IfcAnnotationSurface : IfcGeometricRepresentationItem, ObjectHelper<IfcAnnotationSurface,2> { IfcAnnotationSurface() : Object("IfcAnnotationSurface") {}
  1493. Lazy< IfcGeometricRepresentationItem > Item;
  1494. Maybe< Lazy< NotImplemented > > TextureCoordinates;
  1495. };
  1496. // C++ wrapper for IfcAnnotationSurfaceOccurrence
  1497. struct IfcAnnotationSurfaceOccurrence : IfcAnnotationOccurrence, ObjectHelper<IfcAnnotationSurfaceOccurrence,0> { IfcAnnotationSurfaceOccurrence() : Object("IfcAnnotationSurfaceOccurrence") {}
  1498. };
  1499. // C++ wrapper for IfcAnnotationSymbolOccurrence
  1500. struct IfcAnnotationSymbolOccurrence : IfcAnnotationOccurrence, ObjectHelper<IfcAnnotationSymbolOccurrence,0> { IfcAnnotationSymbolOccurrence() : Object("IfcAnnotationSymbolOccurrence") {}
  1501. };
  1502. // C++ wrapper for IfcAnnotationTextOccurrence
  1503. struct IfcAnnotationTextOccurrence : IfcAnnotationOccurrence, ObjectHelper<IfcAnnotationTextOccurrence,0> { IfcAnnotationTextOccurrence() : Object("IfcAnnotationTextOccurrence") {}
  1504. };
  1505. // C++ wrapper for IfcProfileDef
  1506. struct IfcProfileDef : ObjectHelper<IfcProfileDef,2> { IfcProfileDef() : Object("IfcProfileDef") {}
  1507. IfcProfileTypeEnum::Out ProfileType;
  1508. Maybe< IfcLabel::Out > ProfileName;
  1509. };
  1510. // C++ wrapper for IfcArbitraryClosedProfileDef
  1511. struct IfcArbitraryClosedProfileDef : IfcProfileDef, ObjectHelper<IfcArbitraryClosedProfileDef,1> { IfcArbitraryClosedProfileDef() : Object("IfcArbitraryClosedProfileDef") {}
  1512. Lazy< IfcCurve > OuterCurve;
  1513. };
  1514. // C++ wrapper for IfcArbitraryOpenProfileDef
  1515. struct IfcArbitraryOpenProfileDef : IfcProfileDef, ObjectHelper<IfcArbitraryOpenProfileDef,1> { IfcArbitraryOpenProfileDef() : Object("IfcArbitraryOpenProfileDef") {}
  1516. Lazy< IfcBoundedCurve > Curve;
  1517. };
  1518. // C++ wrapper for IfcArbitraryProfileDefWithVoids
  1519. struct IfcArbitraryProfileDefWithVoids : IfcArbitraryClosedProfileDef, ObjectHelper<IfcArbitraryProfileDefWithVoids,1> { IfcArbitraryProfileDefWithVoids() : Object("IfcArbitraryProfileDefWithVoids") {}
  1520. ListOf< Lazy< IfcCurve >, 1, 0 > InnerCurves;
  1521. };
  1522. // C++ wrapper for IfcGroup
  1523. struct IfcGroup : IfcObject, ObjectHelper<IfcGroup,0> { IfcGroup() : Object("IfcGroup") {}
  1524. };
  1525. // C++ wrapper for IfcAsset
  1526. struct IfcAsset : IfcGroup, ObjectHelper<IfcAsset,9> { IfcAsset() : Object("IfcAsset") {}
  1527. IfcIdentifier::Out AssetID;
  1528. Lazy< NotImplemented > OriginalValue;
  1529. Lazy< NotImplemented > CurrentValue;
  1530. Lazy< NotImplemented > TotalReplacementCost;
  1531. IfcActorSelect::Out Owner;
  1532. IfcActorSelect::Out User;
  1533. Lazy< NotImplemented > ResponsiblePerson;
  1534. Lazy< NotImplemented > IncorporationDate;
  1535. Lazy< NotImplemented > DepreciatedValue;
  1536. };
  1537. // C++ wrapper for IfcParameterizedProfileDef
  1538. struct IfcParameterizedProfileDef : IfcProfileDef, ObjectHelper<IfcParameterizedProfileDef,1> { IfcParameterizedProfileDef() : Object("IfcParameterizedProfileDef") {}
  1539. Lazy< IfcAxis2Placement2D > Position;
  1540. };
  1541. // C++ wrapper for IfcIShapeProfileDef
  1542. struct IfcIShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcIShapeProfileDef,5> { IfcIShapeProfileDef() : Object("IfcIShapeProfileDef") {}
  1543. IfcPositiveLengthMeasure::Out OverallWidth;
  1544. IfcPositiveLengthMeasure::Out OverallDepth;
  1545. IfcPositiveLengthMeasure::Out WebThickness;
  1546. IfcPositiveLengthMeasure::Out FlangeThickness;
  1547. Maybe< IfcPositiveLengthMeasure::Out > FilletRadius;
  1548. };
  1549. // C++ wrapper for IfcAsymmetricIShapeProfileDef
  1550. struct IfcAsymmetricIShapeProfileDef : IfcIShapeProfileDef, ObjectHelper<IfcAsymmetricIShapeProfileDef,4> { IfcAsymmetricIShapeProfileDef() : Object("IfcAsymmetricIShapeProfileDef") {}
  1551. IfcPositiveLengthMeasure::Out TopFlangeWidth;
  1552. Maybe< IfcPositiveLengthMeasure::Out > TopFlangeThickness;
  1553. Maybe< IfcPositiveLengthMeasure::Out > TopFlangeFilletRadius;
  1554. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInY;
  1555. };
  1556. // C++ wrapper for IfcPlacement
  1557. struct IfcPlacement : IfcGeometricRepresentationItem, ObjectHelper<IfcPlacement,1> { IfcPlacement() : Object("IfcPlacement") {}
  1558. Lazy< IfcCartesianPoint > Location;
  1559. };
  1560. // C++ wrapper for IfcAxis1Placement
  1561. struct IfcAxis1Placement : IfcPlacement, ObjectHelper<IfcAxis1Placement,1> { IfcAxis1Placement() : Object("IfcAxis1Placement") {}
  1562. Maybe< Lazy< IfcDirection > > Axis;
  1563. };
  1564. // C++ wrapper for IfcAxis2Placement2D
  1565. struct IfcAxis2Placement2D : IfcPlacement, ObjectHelper<IfcAxis2Placement2D,1> { IfcAxis2Placement2D() : Object("IfcAxis2Placement2D") {}
  1566. Maybe< Lazy< IfcDirection > > RefDirection;
  1567. };
  1568. // C++ wrapper for IfcAxis2Placement3D
  1569. struct IfcAxis2Placement3D : IfcPlacement, ObjectHelper<IfcAxis2Placement3D,2> { IfcAxis2Placement3D() : Object("IfcAxis2Placement3D") {}
  1570. Maybe< Lazy< IfcDirection > > Axis;
  1571. Maybe< Lazy< IfcDirection > > RefDirection;
  1572. };
  1573. // C++ wrapper for IfcBSplineCurve
  1574. struct IfcBSplineCurve : IfcBoundedCurve, ObjectHelper<IfcBSplineCurve,5> { IfcBSplineCurve() : Object("IfcBSplineCurve") {}
  1575. INTEGER::Out Degree;
  1576. ListOf< Lazy< IfcCartesianPoint >, 2, 0 > ControlPointsList;
  1577. IfcBSplineCurveForm::Out CurveForm;
  1578. LOGICAL::Out ClosedCurve;
  1579. LOGICAL::Out SelfIntersect;
  1580. };
  1581. // C++ wrapper for IfcElement
  1582. struct IfcElement : IfcProduct, ObjectHelper<IfcElement,1> { IfcElement() : Object("IfcElement") {}
  1583. Maybe< IfcIdentifier::Out > Tag;
  1584. };
  1585. // C++ wrapper for IfcBuildingElement
  1586. struct IfcBuildingElement : IfcElement, ObjectHelper<IfcBuildingElement,0> { IfcBuildingElement() : Object("IfcBuildingElement") {}
  1587. };
  1588. // C++ wrapper for IfcBeam
  1589. struct IfcBeam : IfcBuildingElement, ObjectHelper<IfcBeam,0> { IfcBeam() : Object("IfcBeam") {}
  1590. };
  1591. // C++ wrapper for IfcBuildingElementType
  1592. struct IfcBuildingElementType : IfcElementType, ObjectHelper<IfcBuildingElementType,0> { IfcBuildingElementType() : Object("IfcBuildingElementType") {}
  1593. };
  1594. // C++ wrapper for IfcBeamType
  1595. struct IfcBeamType : IfcBuildingElementType, ObjectHelper<IfcBeamType,1> { IfcBeamType() : Object("IfcBeamType") {}
  1596. IfcBeamTypeEnum::Out PredefinedType;
  1597. };
  1598. // C++ wrapper for IfcBezierCurve
  1599. struct IfcBezierCurve : IfcBSplineCurve, ObjectHelper<IfcBezierCurve,0> { IfcBezierCurve() : Object("IfcBezierCurve") {}
  1600. };
  1601. // C++ wrapper for IfcCsgPrimitive3D
  1602. struct IfcCsgPrimitive3D : IfcGeometricRepresentationItem, ObjectHelper<IfcCsgPrimitive3D,1> { IfcCsgPrimitive3D() : Object("IfcCsgPrimitive3D") {}
  1603. Lazy< IfcAxis2Placement3D > Position;
  1604. };
  1605. // C++ wrapper for IfcBlock
  1606. struct IfcBlock : IfcCsgPrimitive3D, ObjectHelper<IfcBlock,3> { IfcBlock() : Object("IfcBlock") {}
  1607. IfcPositiveLengthMeasure::Out XLength;
  1608. IfcPositiveLengthMeasure::Out YLength;
  1609. IfcPositiveLengthMeasure::Out ZLength;
  1610. };
  1611. // C++ wrapper for IfcBoilerType
  1612. struct IfcBoilerType : IfcEnergyConversionDeviceType, ObjectHelper<IfcBoilerType,1> { IfcBoilerType() : Object("IfcBoilerType") {}
  1613. IfcBoilerTypeEnum::Out PredefinedType;
  1614. };
  1615. // C++ wrapper for IfcBooleanResult
  1616. struct IfcBooleanResult : IfcGeometricRepresentationItem, ObjectHelper<IfcBooleanResult,3> { IfcBooleanResult() : Object("IfcBooleanResult") {}
  1617. IfcBooleanOperator::Out Operator;
  1618. IfcBooleanOperand::Out FirstOperand;
  1619. IfcBooleanOperand::Out SecondOperand;
  1620. };
  1621. // C++ wrapper for IfcBooleanClippingResult
  1622. struct IfcBooleanClippingResult : IfcBooleanResult, ObjectHelper<IfcBooleanClippingResult,0> { IfcBooleanClippingResult() : Object("IfcBooleanClippingResult") {}
  1623. };
  1624. // C++ wrapper for IfcSurface
  1625. struct IfcSurface : IfcGeometricRepresentationItem, ObjectHelper<IfcSurface,0> { IfcSurface() : Object("IfcSurface") {}
  1626. };
  1627. // C++ wrapper for IfcBoundedSurface
  1628. struct IfcBoundedSurface : IfcSurface, ObjectHelper<IfcBoundedSurface,0> { IfcBoundedSurface() : Object("IfcBoundedSurface") {}
  1629. };
  1630. // C++ wrapper for IfcBoundingBox
  1631. struct IfcBoundingBox : IfcGeometricRepresentationItem, ObjectHelper<IfcBoundingBox,4> { IfcBoundingBox() : Object("IfcBoundingBox") {}
  1632. Lazy< IfcCartesianPoint > Corner;
  1633. IfcPositiveLengthMeasure::Out XDim;
  1634. IfcPositiveLengthMeasure::Out YDim;
  1635. IfcPositiveLengthMeasure::Out ZDim;
  1636. };
  1637. // C++ wrapper for IfcHalfSpaceSolid
  1638. struct IfcHalfSpaceSolid : IfcGeometricRepresentationItem, ObjectHelper<IfcHalfSpaceSolid,2> { IfcHalfSpaceSolid() : Object("IfcHalfSpaceSolid") {}
  1639. Lazy< IfcSurface > BaseSurface;
  1640. BOOLEAN::Out AgreementFlag;
  1641. };
  1642. // C++ wrapper for IfcBoxedHalfSpace
  1643. struct IfcBoxedHalfSpace : IfcHalfSpaceSolid, ObjectHelper<IfcBoxedHalfSpace,1> { IfcBoxedHalfSpace() : Object("IfcBoxedHalfSpace") {}
  1644. Lazy< IfcBoundingBox > Enclosure;
  1645. };
  1646. // C++ wrapper for IfcSpatialStructureElement
  1647. struct IfcSpatialStructureElement : IfcProduct, ObjectHelper<IfcSpatialStructureElement,2> { IfcSpatialStructureElement() : Object("IfcSpatialStructureElement") {}
  1648. Maybe< IfcLabel::Out > LongName;
  1649. IfcElementCompositionEnum::Out CompositionType;
  1650. };
  1651. // C++ wrapper for IfcBuilding
  1652. struct IfcBuilding : IfcSpatialStructureElement, ObjectHelper<IfcBuilding,3> { IfcBuilding() : Object("IfcBuilding") {}
  1653. Maybe< IfcLengthMeasure::Out > ElevationOfRefHeight;
  1654. Maybe< IfcLengthMeasure::Out > ElevationOfTerrain;
  1655. Maybe< Lazy< NotImplemented > > BuildingAddress;
  1656. };
  1657. // C++ wrapper for IfcBuildingElementComponent
  1658. struct IfcBuildingElementComponent : IfcBuildingElement, ObjectHelper<IfcBuildingElementComponent,0> { IfcBuildingElementComponent() : Object("IfcBuildingElementComponent") {}
  1659. };
  1660. // C++ wrapper for IfcBuildingElementPart
  1661. struct IfcBuildingElementPart : IfcBuildingElementComponent, ObjectHelper<IfcBuildingElementPart,0> { IfcBuildingElementPart() : Object("IfcBuildingElementPart") {}
  1662. };
  1663. // C++ wrapper for IfcBuildingElementProxy
  1664. struct IfcBuildingElementProxy : IfcBuildingElement, ObjectHelper<IfcBuildingElementProxy,1> { IfcBuildingElementProxy() : Object("IfcBuildingElementProxy") {}
  1665. Maybe< IfcElementCompositionEnum::Out > CompositionType;
  1666. };
  1667. // C++ wrapper for IfcBuildingElementProxyType
  1668. struct IfcBuildingElementProxyType : IfcBuildingElementType, ObjectHelper<IfcBuildingElementProxyType,1> { IfcBuildingElementProxyType() : Object("IfcBuildingElementProxyType") {}
  1669. IfcBuildingElementProxyTypeEnum::Out PredefinedType;
  1670. };
  1671. // C++ wrapper for IfcBuildingStorey
  1672. struct IfcBuildingStorey : IfcSpatialStructureElement, ObjectHelper<IfcBuildingStorey,1> { IfcBuildingStorey() : Object("IfcBuildingStorey") {}
  1673. Maybe< IfcLengthMeasure::Out > Elevation;
  1674. };
  1675. // C++ wrapper for IfcCShapeProfileDef
  1676. struct IfcCShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcCShapeProfileDef,6> { IfcCShapeProfileDef() : Object("IfcCShapeProfileDef") {}
  1677. IfcPositiveLengthMeasure::Out Depth;
  1678. IfcPositiveLengthMeasure::Out Width;
  1679. IfcPositiveLengthMeasure::Out WallThickness;
  1680. IfcPositiveLengthMeasure::Out Girth;
  1681. Maybe< IfcPositiveLengthMeasure::Out > InternalFilletRadius;
  1682. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInX;
  1683. };
  1684. // C++ wrapper for IfcFlowFittingType
  1685. struct IfcFlowFittingType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowFittingType,0> { IfcFlowFittingType() : Object("IfcFlowFittingType") {}
  1686. };
  1687. // C++ wrapper for IfcCableCarrierFittingType
  1688. struct IfcCableCarrierFittingType : IfcFlowFittingType, ObjectHelper<IfcCableCarrierFittingType,1> { IfcCableCarrierFittingType() : Object("IfcCableCarrierFittingType") {}
  1689. IfcCableCarrierFittingTypeEnum::Out PredefinedType;
  1690. };
  1691. // C++ wrapper for IfcFlowSegmentType
  1692. struct IfcFlowSegmentType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowSegmentType,0> { IfcFlowSegmentType() : Object("IfcFlowSegmentType") {}
  1693. };
  1694. // C++ wrapper for IfcCableCarrierSegmentType
  1695. struct IfcCableCarrierSegmentType : IfcFlowSegmentType, ObjectHelper<IfcCableCarrierSegmentType,1> { IfcCableCarrierSegmentType() : Object("IfcCableCarrierSegmentType") {}
  1696. IfcCableCarrierSegmentTypeEnum::Out PredefinedType;
  1697. };
  1698. // C++ wrapper for IfcCableSegmentType
  1699. struct IfcCableSegmentType : IfcFlowSegmentType, ObjectHelper<IfcCableSegmentType,1> { IfcCableSegmentType() : Object("IfcCableSegmentType") {}
  1700. IfcCableSegmentTypeEnum::Out PredefinedType;
  1701. };
  1702. // C++ wrapper for IfcPoint
  1703. struct IfcPoint : IfcGeometricRepresentationItem, ObjectHelper<IfcPoint,0> { IfcPoint() : Object("IfcPoint") {}
  1704. };
  1705. // C++ wrapper for IfcCartesianPoint
  1706. struct IfcCartesianPoint : IfcPoint, ObjectHelper<IfcCartesianPoint,1> { IfcCartesianPoint() : Object("IfcCartesianPoint") {}
  1707. ListOf< IfcLengthMeasure, 1, 3 >::Out Coordinates;
  1708. };
  1709. // C++ wrapper for IfcCartesianTransformationOperator
  1710. struct IfcCartesianTransformationOperator : IfcGeometricRepresentationItem, ObjectHelper<IfcCartesianTransformationOperator,4> { IfcCartesianTransformationOperator() : Object("IfcCartesianTransformationOperator") {}
  1711. Maybe< Lazy< IfcDirection > > Axis1;
  1712. Maybe< Lazy< IfcDirection > > Axis2;
  1713. Lazy< IfcCartesianPoint > LocalOrigin;
  1714. Maybe< REAL::Out > Scale;
  1715. };
  1716. // C++ wrapper for IfcCartesianTransformationOperator2D
  1717. struct IfcCartesianTransformationOperator2D : IfcCartesianTransformationOperator, ObjectHelper<IfcCartesianTransformationOperator2D,0> { IfcCartesianTransformationOperator2D() : Object("IfcCartesianTransformationOperator2D") {}
  1718. };
  1719. // C++ wrapper for IfcCartesianTransformationOperator2DnonUniform
  1720. struct IfcCartesianTransformationOperator2DnonUniform : IfcCartesianTransformationOperator2D, ObjectHelper<IfcCartesianTransformationOperator2DnonUniform,1> { IfcCartesianTransformationOperator2DnonUniform() : Object("IfcCartesianTransformationOperator2DnonUniform") {}
  1721. Maybe< REAL::Out > Scale2;
  1722. };
  1723. // C++ wrapper for IfcCartesianTransformationOperator3D
  1724. struct IfcCartesianTransformationOperator3D : IfcCartesianTransformationOperator, ObjectHelper<IfcCartesianTransformationOperator3D,1> { IfcCartesianTransformationOperator3D() : Object("IfcCartesianTransformationOperator3D") {}
  1725. Maybe< Lazy< IfcDirection > > Axis3;
  1726. };
  1727. // C++ wrapper for IfcCartesianTransformationOperator3DnonUniform
  1728. struct IfcCartesianTransformationOperator3DnonUniform : IfcCartesianTransformationOperator3D, ObjectHelper<IfcCartesianTransformationOperator3DnonUniform,2> { IfcCartesianTransformationOperator3DnonUniform() : Object("IfcCartesianTransformationOperator3DnonUniform") {}
  1729. Maybe< REAL::Out > Scale2;
  1730. Maybe< REAL::Out > Scale3;
  1731. };
  1732. // C++ wrapper for IfcCenterLineProfileDef
  1733. struct IfcCenterLineProfileDef : IfcArbitraryOpenProfileDef, ObjectHelper<IfcCenterLineProfileDef,1> { IfcCenterLineProfileDef() : Object("IfcCenterLineProfileDef") {}
  1734. IfcPositiveLengthMeasure::Out Thickness;
  1735. };
  1736. // C++ wrapper for IfcFeatureElement
  1737. struct IfcFeatureElement : IfcElement, ObjectHelper<IfcFeatureElement,0> { IfcFeatureElement() : Object("IfcFeatureElement") {}
  1738. };
  1739. // C++ wrapper for IfcFeatureElementSubtraction
  1740. struct IfcFeatureElementSubtraction : IfcFeatureElement, ObjectHelper<IfcFeatureElementSubtraction,0> { IfcFeatureElementSubtraction() : Object("IfcFeatureElementSubtraction") {}
  1741. };
  1742. // C++ wrapper for IfcEdgeFeature
  1743. struct IfcEdgeFeature : IfcFeatureElementSubtraction, ObjectHelper<IfcEdgeFeature,1> { IfcEdgeFeature() : Object("IfcEdgeFeature") {}
  1744. Maybe< IfcPositiveLengthMeasure::Out > FeatureLength;
  1745. };
  1746. // C++ wrapper for IfcChamferEdgeFeature
  1747. struct IfcChamferEdgeFeature : IfcEdgeFeature, ObjectHelper<IfcChamferEdgeFeature,2> { IfcChamferEdgeFeature() : Object("IfcChamferEdgeFeature") {}
  1748. Maybe< IfcPositiveLengthMeasure::Out > Width;
  1749. Maybe< IfcPositiveLengthMeasure::Out > Height;
  1750. };
  1751. // C++ wrapper for IfcChillerType
  1752. struct IfcChillerType : IfcEnergyConversionDeviceType, ObjectHelper<IfcChillerType,1> { IfcChillerType() : Object("IfcChillerType") {}
  1753. IfcChillerTypeEnum::Out PredefinedType;
  1754. };
  1755. // C++ wrapper for IfcConic
  1756. struct IfcConic : IfcCurve, ObjectHelper<IfcConic,1> { IfcConic() : Object("IfcConic") {}
  1757. IfcAxis2Placement::Out Position;
  1758. };
  1759. // C++ wrapper for IfcCircle
  1760. struct IfcCircle : IfcConic, ObjectHelper<IfcCircle,1> { IfcCircle() : Object("IfcCircle") {}
  1761. IfcPositiveLengthMeasure::Out Radius;
  1762. };
  1763. // C++ wrapper for IfcCircleProfileDef
  1764. struct IfcCircleProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcCircleProfileDef,1> { IfcCircleProfileDef() : Object("IfcCircleProfileDef") {}
  1765. IfcPositiveLengthMeasure::Out Radius;
  1766. };
  1767. // C++ wrapper for IfcCircleHollowProfileDef
  1768. struct IfcCircleHollowProfileDef : IfcCircleProfileDef, ObjectHelper<IfcCircleHollowProfileDef,1> { IfcCircleHollowProfileDef() : Object("IfcCircleHollowProfileDef") {}
  1769. IfcPositiveLengthMeasure::Out WallThickness;
  1770. };
  1771. // C++ wrapper for IfcTopologicalRepresentationItem
  1772. struct IfcTopologicalRepresentationItem : IfcRepresentationItem, ObjectHelper<IfcTopologicalRepresentationItem,0> { IfcTopologicalRepresentationItem() : Object("IfcTopologicalRepresentationItem") {}
  1773. };
  1774. // C++ wrapper for IfcConnectedFaceSet
  1775. struct IfcConnectedFaceSet : IfcTopologicalRepresentationItem, ObjectHelper<IfcConnectedFaceSet,1> { IfcConnectedFaceSet() : Object("IfcConnectedFaceSet") {}
  1776. ListOf< Lazy< IfcFace >, 1, 0 > CfsFaces;
  1777. };
  1778. // C++ wrapper for IfcClosedShell
  1779. struct IfcClosedShell : IfcConnectedFaceSet, ObjectHelper<IfcClosedShell,0> { IfcClosedShell() : Object("IfcClosedShell") {}
  1780. };
  1781. // C++ wrapper for IfcCoilType
  1782. struct IfcCoilType : IfcEnergyConversionDeviceType, ObjectHelper<IfcCoilType,1> { IfcCoilType() : Object("IfcCoilType") {}
  1783. IfcCoilTypeEnum::Out PredefinedType;
  1784. };
  1785. // C++ wrapper for IfcColourSpecification
  1786. struct IfcColourSpecification : ObjectHelper<IfcColourSpecification,1> { IfcColourSpecification() : Object("IfcColourSpecification") {}
  1787. Maybe< IfcLabel::Out > Name;
  1788. };
  1789. // C++ wrapper for IfcColourRgb
  1790. struct IfcColourRgb : IfcColourSpecification, ObjectHelper<IfcColourRgb,3> { IfcColourRgb() : Object("IfcColourRgb") {}
  1791. IfcNormalisedRatioMeasure::Out Red;
  1792. IfcNormalisedRatioMeasure::Out Green;
  1793. IfcNormalisedRatioMeasure::Out Blue;
  1794. };
  1795. // C++ wrapper for IfcColumn
  1796. struct IfcColumn : IfcBuildingElement, ObjectHelper<IfcColumn,0> { IfcColumn() : Object("IfcColumn") {}
  1797. };
  1798. // C++ wrapper for IfcColumnType
  1799. struct IfcColumnType : IfcBuildingElementType, ObjectHelper<IfcColumnType,1> { IfcColumnType() : Object("IfcColumnType") {}
  1800. IfcColumnTypeEnum::Out PredefinedType;
  1801. };
  1802. // C++ wrapper for IfcProperty
  1803. struct IfcProperty : ObjectHelper<IfcProperty,2> { IfcProperty() : Object("IfcProperty") {}
  1804. IfcIdentifier::Out Name;
  1805. Maybe< IfcText::Out > Description;
  1806. };
  1807. // C++ wrapper for IfcComplexProperty
  1808. struct IfcComplexProperty : IfcProperty, ObjectHelper<IfcComplexProperty,2> { IfcComplexProperty() : Object("IfcComplexProperty") {}
  1809. IfcIdentifier::Out UsageName;
  1810. ListOf< Lazy< IfcProperty >, 1, 0 > HasProperties;
  1811. };
  1812. // C++ wrapper for IfcCompositeCurveSegment
  1813. struct IfcCompositeCurveSegment : IfcGeometricRepresentationItem, ObjectHelper<IfcCompositeCurveSegment,3> { IfcCompositeCurveSegment() : Object("IfcCompositeCurveSegment") {}
  1814. IfcTransitionCode::Out Transition;
  1815. BOOLEAN::Out SameSense;
  1816. Lazy< IfcCurve > ParentCurve;
  1817. };
  1818. // C++ wrapper for IfcCompositeProfileDef
  1819. struct IfcCompositeProfileDef : IfcProfileDef, ObjectHelper<IfcCompositeProfileDef,2> { IfcCompositeProfileDef() : Object("IfcCompositeProfileDef") {}
  1820. ListOf< Lazy< IfcProfileDef >, 2, 0 > Profiles;
  1821. Maybe< IfcLabel::Out > Label;
  1822. };
  1823. // C++ wrapper for IfcFlowMovingDeviceType
  1824. struct IfcFlowMovingDeviceType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowMovingDeviceType,0> { IfcFlowMovingDeviceType() : Object("IfcFlowMovingDeviceType") {}
  1825. };
  1826. // C++ wrapper for IfcCompressorType
  1827. struct IfcCompressorType : IfcFlowMovingDeviceType, ObjectHelper<IfcCompressorType,1> { IfcCompressorType() : Object("IfcCompressorType") {}
  1828. IfcCompressorTypeEnum::Out PredefinedType;
  1829. };
  1830. // C++ wrapper for IfcCondenserType
  1831. struct IfcCondenserType : IfcEnergyConversionDeviceType, ObjectHelper<IfcCondenserType,1> { IfcCondenserType() : Object("IfcCondenserType") {}
  1832. IfcCondenserTypeEnum::Out PredefinedType;
  1833. };
  1834. // C++ wrapper for IfcCondition
  1835. struct IfcCondition : IfcGroup, ObjectHelper<IfcCondition,0> { IfcCondition() : Object("IfcCondition") {}
  1836. };
  1837. // C++ wrapper for IfcConditionCriterion
  1838. struct IfcConditionCriterion : IfcControl, ObjectHelper<IfcConditionCriterion,2> { IfcConditionCriterion() : Object("IfcConditionCriterion") {}
  1839. IfcConditionCriterionSelect::Out Criterion;
  1840. IfcDateTimeSelect::Out CriterionDateTime;
  1841. };
  1842. // C++ wrapper for IfcResource
  1843. struct IfcResource : IfcObject, ObjectHelper<IfcResource,0> { IfcResource() : Object("IfcResource") {}
  1844. };
  1845. // C++ wrapper for IfcConstructionResource
  1846. struct IfcConstructionResource : IfcResource, ObjectHelper<IfcConstructionResource,4> { IfcConstructionResource() : Object("IfcConstructionResource") {}
  1847. Maybe< IfcIdentifier::Out > ResourceIdentifier;
  1848. Maybe< IfcLabel::Out > ResourceGroup;
  1849. Maybe< IfcResourceConsumptionEnum::Out > ResourceConsumption;
  1850. Maybe< Lazy< IfcMeasureWithUnit > > BaseQuantity;
  1851. };
  1852. // C++ wrapper for IfcConstructionEquipmentResource
  1853. struct IfcConstructionEquipmentResource : IfcConstructionResource, ObjectHelper<IfcConstructionEquipmentResource,0> { IfcConstructionEquipmentResource() : Object("IfcConstructionEquipmentResource") {}
  1854. };
  1855. // C++ wrapper for IfcConstructionMaterialResource
  1856. struct IfcConstructionMaterialResource : IfcConstructionResource, ObjectHelper<IfcConstructionMaterialResource,2> { IfcConstructionMaterialResource() : Object("IfcConstructionMaterialResource") {}
  1857. Maybe< ListOf< IfcActorSelect, 1, 0 >::Out > Suppliers;
  1858. Maybe< IfcRatioMeasure::Out > UsageRatio;
  1859. };
  1860. // C++ wrapper for IfcConstructionProductResource
  1861. struct IfcConstructionProductResource : IfcConstructionResource, ObjectHelper<IfcConstructionProductResource,0> { IfcConstructionProductResource() : Object("IfcConstructionProductResource") {}
  1862. };
  1863. // C++ wrapper for IfcNamedUnit
  1864. struct IfcNamedUnit : ObjectHelper<IfcNamedUnit,2> { IfcNamedUnit() : Object("IfcNamedUnit") {}
  1865. Lazy< NotImplemented > Dimensions;
  1866. IfcUnitEnum::Out UnitType;
  1867. };
  1868. // C++ wrapper for IfcContextDependentUnit
  1869. struct IfcContextDependentUnit : IfcNamedUnit, ObjectHelper<IfcContextDependentUnit,1> { IfcContextDependentUnit() : Object("IfcContextDependentUnit") {}
  1870. IfcLabel::Out Name;
  1871. };
  1872. // C++ wrapper for IfcControllerType
  1873. struct IfcControllerType : IfcDistributionControlElementType, ObjectHelper<IfcControllerType,1> { IfcControllerType() : Object("IfcControllerType") {}
  1874. IfcControllerTypeEnum::Out PredefinedType;
  1875. };
  1876. // C++ wrapper for IfcConversionBasedUnit
  1877. struct IfcConversionBasedUnit : IfcNamedUnit, ObjectHelper<IfcConversionBasedUnit,2> { IfcConversionBasedUnit() : Object("IfcConversionBasedUnit") {}
  1878. IfcLabel::Out Name;
  1879. Lazy< IfcMeasureWithUnit > ConversionFactor;
  1880. };
  1881. // C++ wrapper for IfcCooledBeamType
  1882. struct IfcCooledBeamType : IfcEnergyConversionDeviceType, ObjectHelper<IfcCooledBeamType,1> { IfcCooledBeamType() : Object("IfcCooledBeamType") {}
  1883. IfcCooledBeamTypeEnum::Out PredefinedType;
  1884. };
  1885. // C++ wrapper for IfcCoolingTowerType
  1886. struct IfcCoolingTowerType : IfcEnergyConversionDeviceType, ObjectHelper<IfcCoolingTowerType,1> { IfcCoolingTowerType() : Object("IfcCoolingTowerType") {}
  1887. IfcCoolingTowerTypeEnum::Out PredefinedType;
  1888. };
  1889. // C++ wrapper for IfcCostItem
  1890. struct IfcCostItem : IfcControl, ObjectHelper<IfcCostItem,0> { IfcCostItem() : Object("IfcCostItem") {}
  1891. };
  1892. // C++ wrapper for IfcCostSchedule
  1893. struct IfcCostSchedule : IfcControl, ObjectHelper<IfcCostSchedule,8> { IfcCostSchedule() : Object("IfcCostSchedule") {}
  1894. Maybe< IfcActorSelect::Out > SubmittedBy;
  1895. Maybe< IfcActorSelect::Out > PreparedBy;
  1896. Maybe< IfcDateTimeSelect::Out > SubmittedOn;
  1897. Maybe< IfcLabel::Out > Status;
  1898. Maybe< ListOf< IfcActorSelect, 1, 0 >::Out > TargetUsers;
  1899. Maybe< IfcDateTimeSelect::Out > UpdateDate;
  1900. IfcIdentifier::Out ID;
  1901. IfcCostScheduleTypeEnum::Out PredefinedType;
  1902. };
  1903. // C++ wrapper for IfcCovering
  1904. struct IfcCovering : IfcBuildingElement, ObjectHelper<IfcCovering,1> { IfcCovering() : Object("IfcCovering") {}
  1905. Maybe< IfcCoveringTypeEnum::Out > PredefinedType;
  1906. };
  1907. // C++ wrapper for IfcCoveringType
  1908. struct IfcCoveringType : IfcBuildingElementType, ObjectHelper<IfcCoveringType,1> { IfcCoveringType() : Object("IfcCoveringType") {}
  1909. IfcCoveringTypeEnum::Out PredefinedType;
  1910. };
  1911. // C++ wrapper for IfcCraneRailAShapeProfileDef
  1912. struct IfcCraneRailAShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcCraneRailAShapeProfileDef,12> { IfcCraneRailAShapeProfileDef() : Object("IfcCraneRailAShapeProfileDef") {}
  1913. IfcPositiveLengthMeasure::Out OverallHeight;
  1914. IfcPositiveLengthMeasure::Out BaseWidth2;
  1915. Maybe< IfcPositiveLengthMeasure::Out > Radius;
  1916. IfcPositiveLengthMeasure::Out HeadWidth;
  1917. IfcPositiveLengthMeasure::Out HeadDepth2;
  1918. IfcPositiveLengthMeasure::Out HeadDepth3;
  1919. IfcPositiveLengthMeasure::Out WebThickness;
  1920. IfcPositiveLengthMeasure::Out BaseWidth4;
  1921. IfcPositiveLengthMeasure::Out BaseDepth1;
  1922. IfcPositiveLengthMeasure::Out BaseDepth2;
  1923. IfcPositiveLengthMeasure::Out BaseDepth3;
  1924. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInY;
  1925. };
  1926. // C++ wrapper for IfcCraneRailFShapeProfileDef
  1927. struct IfcCraneRailFShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcCraneRailFShapeProfileDef,9> { IfcCraneRailFShapeProfileDef() : Object("IfcCraneRailFShapeProfileDef") {}
  1928. IfcPositiveLengthMeasure::Out OverallHeight;
  1929. IfcPositiveLengthMeasure::Out HeadWidth;
  1930. Maybe< IfcPositiveLengthMeasure::Out > Radius;
  1931. IfcPositiveLengthMeasure::Out HeadDepth2;
  1932. IfcPositiveLengthMeasure::Out HeadDepth3;
  1933. IfcPositiveLengthMeasure::Out WebThickness;
  1934. IfcPositiveLengthMeasure::Out BaseDepth1;
  1935. IfcPositiveLengthMeasure::Out BaseDepth2;
  1936. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInY;
  1937. };
  1938. // C++ wrapper for IfcCrewResource
  1939. struct IfcCrewResource : IfcConstructionResource, ObjectHelper<IfcCrewResource,0> { IfcCrewResource() : Object("IfcCrewResource") {}
  1940. };
  1941. // C++ wrapper for IfcSolidModel
  1942. struct IfcSolidModel : IfcGeometricRepresentationItem, ObjectHelper<IfcSolidModel,0> { IfcSolidModel() : Object("IfcSolidModel") {}
  1943. };
  1944. // C++ wrapper for IfcCsgSolid
  1945. struct IfcCsgSolid : IfcSolidModel, ObjectHelper<IfcCsgSolid,1> { IfcCsgSolid() : Object("IfcCsgSolid") {}
  1946. IfcCsgSelect::Out TreeRootExpression;
  1947. };
  1948. // C++ wrapper for IfcCurtainWall
  1949. struct IfcCurtainWall : IfcBuildingElement, ObjectHelper<IfcCurtainWall,0> { IfcCurtainWall() : Object("IfcCurtainWall") {}
  1950. };
  1951. // C++ wrapper for IfcCurtainWallType
  1952. struct IfcCurtainWallType : IfcBuildingElementType, ObjectHelper<IfcCurtainWallType,1> { IfcCurtainWallType() : Object("IfcCurtainWallType") {}
  1953. IfcCurtainWallTypeEnum::Out PredefinedType;
  1954. };
  1955. // C++ wrapper for IfcCurveBoundedPlane
  1956. struct IfcCurveBoundedPlane : IfcBoundedSurface, ObjectHelper<IfcCurveBoundedPlane,3> { IfcCurveBoundedPlane() : Object("IfcCurveBoundedPlane") {}
  1957. Lazy< IfcPlane > BasisSurface;
  1958. Lazy< IfcCurve > OuterBoundary;
  1959. ListOf< Lazy< IfcCurve >, 0, 0 > InnerBoundaries;
  1960. };
  1961. // C++ wrapper for IfcPresentationStyle
  1962. struct IfcPresentationStyle : ObjectHelper<IfcPresentationStyle,1> { IfcPresentationStyle() : Object("IfcPresentationStyle") {}
  1963. Maybe< IfcLabel::Out > Name;
  1964. };
  1965. // C++ wrapper for IfcDamperType
  1966. struct IfcDamperType : IfcFlowControllerType, ObjectHelper<IfcDamperType,1> { IfcDamperType() : Object("IfcDamperType") {}
  1967. IfcDamperTypeEnum::Out PredefinedType;
  1968. };
  1969. // C++ wrapper for IfcDefinedSymbol
  1970. struct IfcDefinedSymbol : IfcGeometricRepresentationItem, ObjectHelper<IfcDefinedSymbol,2> { IfcDefinedSymbol() : Object("IfcDefinedSymbol") {}
  1971. IfcDefinedSymbolSelect::Out Definition;
  1972. Lazy< IfcCartesianTransformationOperator2D > Target;
  1973. };
  1974. // C++ wrapper for IfcDerivedProfileDef
  1975. struct IfcDerivedProfileDef : IfcProfileDef, ObjectHelper<IfcDerivedProfileDef,3> { IfcDerivedProfileDef() : Object("IfcDerivedProfileDef") {}
  1976. Lazy< IfcProfileDef > ParentProfile;
  1977. Lazy< IfcCartesianTransformationOperator2D > Operator;
  1978. Maybe< IfcLabel::Out > Label;
  1979. };
  1980. // C++ wrapper for IfcDiameterDimension
  1981. struct IfcDiameterDimension : IfcDimensionCurveDirectedCallout, ObjectHelper<IfcDiameterDimension,0> { IfcDiameterDimension() : Object("IfcDiameterDimension") {}
  1982. };
  1983. // C++ wrapper for IfcDimensionCurve
  1984. struct IfcDimensionCurve : IfcAnnotationCurveOccurrence, ObjectHelper<IfcDimensionCurve,0> { IfcDimensionCurve() : Object("IfcDimensionCurve") {}
  1985. };
  1986. // C++ wrapper for IfcTerminatorSymbol
  1987. struct IfcTerminatorSymbol : IfcAnnotationSymbolOccurrence, ObjectHelper<IfcTerminatorSymbol,1> { IfcTerminatorSymbol() : Object("IfcTerminatorSymbol") {}
  1988. Lazy< IfcAnnotationCurveOccurrence > AnnotatedCurve;
  1989. };
  1990. // C++ wrapper for IfcDimensionCurveTerminator
  1991. struct IfcDimensionCurveTerminator : IfcTerminatorSymbol, ObjectHelper<IfcDimensionCurveTerminator,1> { IfcDimensionCurveTerminator() : Object("IfcDimensionCurveTerminator") {}
  1992. IfcDimensionExtentUsage::Out Role;
  1993. };
  1994. // C++ wrapper for IfcDirection
  1995. struct IfcDirection : IfcGeometricRepresentationItem, ObjectHelper<IfcDirection,1> { IfcDirection() : Object("IfcDirection") {}
  1996. ListOf< REAL, 2, 3 >::Out DirectionRatios;
  1997. };
  1998. // C++ wrapper for IfcElementComponent
  1999. struct IfcElementComponent : IfcElement, ObjectHelper<IfcElementComponent,0> { IfcElementComponent() : Object("IfcElementComponent") {}
  2000. };
  2001. // C++ wrapper for IfcDiscreteAccessory
  2002. struct IfcDiscreteAccessory : IfcElementComponent, ObjectHelper<IfcDiscreteAccessory,0> { IfcDiscreteAccessory() : Object("IfcDiscreteAccessory") {}
  2003. };
  2004. // C++ wrapper for IfcElementComponentType
  2005. struct IfcElementComponentType : IfcElementType, ObjectHelper<IfcElementComponentType,0> { IfcElementComponentType() : Object("IfcElementComponentType") {}
  2006. };
  2007. // C++ wrapper for IfcDiscreteAccessoryType
  2008. struct IfcDiscreteAccessoryType : IfcElementComponentType, ObjectHelper<IfcDiscreteAccessoryType,0> { IfcDiscreteAccessoryType() : Object("IfcDiscreteAccessoryType") {}
  2009. };
  2010. // C++ wrapper for IfcDistributionElement
  2011. struct IfcDistributionElement : IfcElement, ObjectHelper<IfcDistributionElement,0> { IfcDistributionElement() : Object("IfcDistributionElement") {}
  2012. };
  2013. // C++ wrapper for IfcDistributionFlowElement
  2014. struct IfcDistributionFlowElement : IfcDistributionElement, ObjectHelper<IfcDistributionFlowElement,0> { IfcDistributionFlowElement() : Object("IfcDistributionFlowElement") {}
  2015. };
  2016. // C++ wrapper for IfcDistributionChamberElement
  2017. struct IfcDistributionChamberElement : IfcDistributionFlowElement, ObjectHelper<IfcDistributionChamberElement,0> { IfcDistributionChamberElement() : Object("IfcDistributionChamberElement") {}
  2018. };
  2019. // C++ wrapper for IfcDistributionChamberElementType
  2020. struct IfcDistributionChamberElementType : IfcDistributionFlowElementType, ObjectHelper<IfcDistributionChamberElementType,1> { IfcDistributionChamberElementType() : Object("IfcDistributionChamberElementType") {}
  2021. IfcDistributionChamberElementTypeEnum::Out PredefinedType;
  2022. };
  2023. // C++ wrapper for IfcDistributionControlElement
  2024. struct IfcDistributionControlElement : IfcDistributionElement, ObjectHelper<IfcDistributionControlElement,1> { IfcDistributionControlElement() : Object("IfcDistributionControlElement") {}
  2025. Maybe< IfcIdentifier::Out > ControlElementId;
  2026. };
  2027. // C++ wrapper for IfcPort
  2028. struct IfcPort : IfcProduct, ObjectHelper<IfcPort,0> { IfcPort() : Object("IfcPort") {}
  2029. };
  2030. // C++ wrapper for IfcDistributionPort
  2031. struct IfcDistributionPort : IfcPort, ObjectHelper<IfcDistributionPort,1> { IfcDistributionPort() : Object("IfcDistributionPort") {}
  2032. Maybe< IfcFlowDirectionEnum::Out > FlowDirection;
  2033. };
  2034. // C++ wrapper for IfcDoor
  2035. struct IfcDoor : IfcBuildingElement, ObjectHelper<IfcDoor,2> { IfcDoor() : Object("IfcDoor") {}
  2036. Maybe< IfcPositiveLengthMeasure::Out > OverallHeight;
  2037. Maybe< IfcPositiveLengthMeasure::Out > OverallWidth;
  2038. };
  2039. // C++ wrapper for IfcPropertyDefinition
  2040. struct IfcPropertyDefinition : IfcRoot, ObjectHelper<IfcPropertyDefinition,0> { IfcPropertyDefinition() : Object("IfcPropertyDefinition") {}
  2041. };
  2042. // C++ wrapper for IfcPropertySetDefinition
  2043. struct IfcPropertySetDefinition : IfcPropertyDefinition, ObjectHelper<IfcPropertySetDefinition,0> { IfcPropertySetDefinition() : Object("IfcPropertySetDefinition") {}
  2044. };
  2045. // C++ wrapper for IfcDoorStyle
  2046. struct IfcDoorStyle : IfcTypeProduct, ObjectHelper<IfcDoorStyle,4> { IfcDoorStyle() : Object("IfcDoorStyle") {}
  2047. IfcDoorStyleOperationEnum::Out OperationType;
  2048. IfcDoorStyleConstructionEnum::Out ConstructionType;
  2049. BOOLEAN::Out ParameterTakesPrecedence;
  2050. BOOLEAN::Out Sizeable;
  2051. };
  2052. // C++ wrapper for IfcDuctFittingType
  2053. struct IfcDuctFittingType : IfcFlowFittingType, ObjectHelper<IfcDuctFittingType,1> { IfcDuctFittingType() : Object("IfcDuctFittingType") {}
  2054. IfcDuctFittingTypeEnum::Out PredefinedType;
  2055. };
  2056. // C++ wrapper for IfcDuctSegmentType
  2057. struct IfcDuctSegmentType : IfcFlowSegmentType, ObjectHelper<IfcDuctSegmentType,1> { IfcDuctSegmentType() : Object("IfcDuctSegmentType") {}
  2058. IfcDuctSegmentTypeEnum::Out PredefinedType;
  2059. };
  2060. // C++ wrapper for IfcFlowTreatmentDeviceType
  2061. struct IfcFlowTreatmentDeviceType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowTreatmentDeviceType,0> { IfcFlowTreatmentDeviceType() : Object("IfcFlowTreatmentDeviceType") {}
  2062. };
  2063. // C++ wrapper for IfcDuctSilencerType
  2064. struct IfcDuctSilencerType : IfcFlowTreatmentDeviceType, ObjectHelper<IfcDuctSilencerType,1> { IfcDuctSilencerType() : Object("IfcDuctSilencerType") {}
  2065. IfcDuctSilencerTypeEnum::Out PredefinedType;
  2066. };
  2067. // C++ wrapper for IfcEdge
  2068. struct IfcEdge : IfcTopologicalRepresentationItem, ObjectHelper<IfcEdge,2> { IfcEdge() : Object("IfcEdge") {}
  2069. Lazy< IfcVertex > EdgeStart;
  2070. Lazy< IfcVertex > EdgeEnd;
  2071. };
  2072. // C++ wrapper for IfcEdgeCurve
  2073. struct IfcEdgeCurve : IfcEdge, ObjectHelper<IfcEdgeCurve,2> { IfcEdgeCurve() : Object("IfcEdgeCurve") {}
  2074. Lazy< IfcCurve > EdgeGeometry;
  2075. BOOLEAN::Out SameSense;
  2076. };
  2077. // C++ wrapper for IfcLoop
  2078. struct IfcLoop : IfcTopologicalRepresentationItem, ObjectHelper<IfcLoop,0> { IfcLoop() : Object("IfcLoop") {}
  2079. };
  2080. // C++ wrapper for IfcEdgeLoop
  2081. struct IfcEdgeLoop : IfcLoop, ObjectHelper<IfcEdgeLoop,1> { IfcEdgeLoop() : Object("IfcEdgeLoop") {}
  2082. ListOf< Lazy< IfcOrientedEdge >, 1, 0 > EdgeList;
  2083. };
  2084. // C++ wrapper for IfcElectricApplianceType
  2085. struct IfcElectricApplianceType : IfcFlowTerminalType, ObjectHelper<IfcElectricApplianceType,1> { IfcElectricApplianceType() : Object("IfcElectricApplianceType") {}
  2086. IfcElectricApplianceTypeEnum::Out PredefinedType;
  2087. };
  2088. // C++ wrapper for IfcFlowController
  2089. struct IfcFlowController : IfcDistributionFlowElement, ObjectHelper<IfcFlowController,0> { IfcFlowController() : Object("IfcFlowController") {}
  2090. };
  2091. // C++ wrapper for IfcElectricDistributionPoint
  2092. struct IfcElectricDistributionPoint : IfcFlowController, ObjectHelper<IfcElectricDistributionPoint,2> { IfcElectricDistributionPoint() : Object("IfcElectricDistributionPoint") {}
  2093. IfcElectricDistributionPointFunctionEnum::Out DistributionPointFunction;
  2094. Maybe< IfcLabel::Out > UserDefinedFunction;
  2095. };
  2096. // C++ wrapper for IfcFlowStorageDeviceType
  2097. struct IfcFlowStorageDeviceType : IfcDistributionFlowElementType, ObjectHelper<IfcFlowStorageDeviceType,0> { IfcFlowStorageDeviceType() : Object("IfcFlowStorageDeviceType") {}
  2098. };
  2099. // C++ wrapper for IfcElectricFlowStorageDeviceType
  2100. struct IfcElectricFlowStorageDeviceType : IfcFlowStorageDeviceType, ObjectHelper<IfcElectricFlowStorageDeviceType,1> { IfcElectricFlowStorageDeviceType() : Object("IfcElectricFlowStorageDeviceType") {}
  2101. IfcElectricFlowStorageDeviceTypeEnum::Out PredefinedType;
  2102. };
  2103. // C++ wrapper for IfcElectricGeneratorType
  2104. struct IfcElectricGeneratorType : IfcEnergyConversionDeviceType, ObjectHelper<IfcElectricGeneratorType,1> { IfcElectricGeneratorType() : Object("IfcElectricGeneratorType") {}
  2105. IfcElectricGeneratorTypeEnum::Out PredefinedType;
  2106. };
  2107. // C++ wrapper for IfcElectricHeaterType
  2108. struct IfcElectricHeaterType : IfcFlowTerminalType, ObjectHelper<IfcElectricHeaterType,1> { IfcElectricHeaterType() : Object("IfcElectricHeaterType") {}
  2109. IfcElectricHeaterTypeEnum::Out PredefinedType;
  2110. };
  2111. // C++ wrapper for IfcElectricMotorType
  2112. struct IfcElectricMotorType : IfcEnergyConversionDeviceType, ObjectHelper<IfcElectricMotorType,1> { IfcElectricMotorType() : Object("IfcElectricMotorType") {}
  2113. IfcElectricMotorTypeEnum::Out PredefinedType;
  2114. };
  2115. // C++ wrapper for IfcElectricTimeControlType
  2116. struct IfcElectricTimeControlType : IfcFlowControllerType, ObjectHelper<IfcElectricTimeControlType,1> { IfcElectricTimeControlType() : Object("IfcElectricTimeControlType") {}
  2117. IfcElectricTimeControlTypeEnum::Out PredefinedType;
  2118. };
  2119. // C++ wrapper for IfcSystem
  2120. struct IfcSystem : IfcGroup, ObjectHelper<IfcSystem,0> { IfcSystem() : Object("IfcSystem") {}
  2121. };
  2122. // C++ wrapper for IfcElectricalCircuit
  2123. struct IfcElectricalCircuit : IfcSystem, ObjectHelper<IfcElectricalCircuit,0> { IfcElectricalCircuit() : Object("IfcElectricalCircuit") {}
  2124. };
  2125. // C++ wrapper for IfcElectricalElement
  2126. struct IfcElectricalElement : IfcElement, ObjectHelper<IfcElectricalElement,0> { IfcElectricalElement() : Object("IfcElectricalElement") {}
  2127. };
  2128. // C++ wrapper for IfcElementAssembly
  2129. struct IfcElementAssembly : IfcElement, ObjectHelper<IfcElementAssembly,2> { IfcElementAssembly() : Object("IfcElementAssembly") {}
  2130. Maybe< IfcAssemblyPlaceEnum::Out > AssemblyPlace;
  2131. IfcElementAssemblyTypeEnum::Out PredefinedType;
  2132. };
  2133. // C++ wrapper for IfcElementQuantity
  2134. struct IfcElementQuantity : IfcPropertySetDefinition, ObjectHelper<IfcElementQuantity,2> { IfcElementQuantity() : Object("IfcElementQuantity") {}
  2135. Maybe< IfcLabel::Out > MethodOfMeasurement;
  2136. ListOf< Lazy< NotImplemented >, 1, 0 > Quantities;
  2137. };
  2138. // C++ wrapper for IfcElementarySurface
  2139. struct IfcElementarySurface : IfcSurface, ObjectHelper<IfcElementarySurface,1> { IfcElementarySurface() : Object("IfcElementarySurface") {}
  2140. Lazy< IfcAxis2Placement3D > Position;
  2141. };
  2142. // C++ wrapper for IfcEllipse
  2143. struct IfcEllipse : IfcConic, ObjectHelper<IfcEllipse,2> { IfcEllipse() : Object("IfcEllipse") {}
  2144. IfcPositiveLengthMeasure::Out SemiAxis1;
  2145. IfcPositiveLengthMeasure::Out SemiAxis2;
  2146. };
  2147. // C++ wrapper for IfcEllipseProfileDef
  2148. struct IfcEllipseProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcEllipseProfileDef,2> { IfcEllipseProfileDef() : Object("IfcEllipseProfileDef") {}
  2149. IfcPositiveLengthMeasure::Out SemiAxis1;
  2150. IfcPositiveLengthMeasure::Out SemiAxis2;
  2151. };
  2152. // C++ wrapper for IfcEnergyConversionDevice
  2153. struct IfcEnergyConversionDevice : IfcDistributionFlowElement, ObjectHelper<IfcEnergyConversionDevice,0> { IfcEnergyConversionDevice() : Object("IfcEnergyConversionDevice") {}
  2154. };
  2155. // C++ wrapper for IfcEquipmentElement
  2156. struct IfcEquipmentElement : IfcElement, ObjectHelper<IfcEquipmentElement,0> { IfcEquipmentElement() : Object("IfcEquipmentElement") {}
  2157. };
  2158. // C++ wrapper for IfcEquipmentStandard
  2159. struct IfcEquipmentStandard : IfcControl, ObjectHelper<IfcEquipmentStandard,0> { IfcEquipmentStandard() : Object("IfcEquipmentStandard") {}
  2160. };
  2161. // C++ wrapper for IfcEvaporativeCoolerType
  2162. struct IfcEvaporativeCoolerType : IfcEnergyConversionDeviceType, ObjectHelper<IfcEvaporativeCoolerType,1> { IfcEvaporativeCoolerType() : Object("IfcEvaporativeCoolerType") {}
  2163. IfcEvaporativeCoolerTypeEnum::Out PredefinedType;
  2164. };
  2165. // C++ wrapper for IfcEvaporatorType
  2166. struct IfcEvaporatorType : IfcEnergyConversionDeviceType, ObjectHelper<IfcEvaporatorType,1> { IfcEvaporatorType() : Object("IfcEvaporatorType") {}
  2167. IfcEvaporatorTypeEnum::Out PredefinedType;
  2168. };
  2169. // C++ wrapper for IfcSweptAreaSolid
  2170. struct IfcSweptAreaSolid : IfcSolidModel, ObjectHelper<IfcSweptAreaSolid,2> { IfcSweptAreaSolid() : Object("IfcSweptAreaSolid") {}
  2171. Lazy< IfcProfileDef > SweptArea;
  2172. Lazy< IfcAxis2Placement3D > Position;
  2173. };
  2174. // C++ wrapper for IfcExtrudedAreaSolid
  2175. struct IfcExtrudedAreaSolid : IfcSweptAreaSolid, ObjectHelper<IfcExtrudedAreaSolid,2> { IfcExtrudedAreaSolid() : Object("IfcExtrudedAreaSolid") {}
  2176. Lazy< IfcDirection > ExtrudedDirection;
  2177. IfcPositiveLengthMeasure::Out Depth;
  2178. };
  2179. // C++ wrapper for IfcFace
  2180. struct IfcFace : IfcTopologicalRepresentationItem, ObjectHelper<IfcFace,1> { IfcFace() : Object("IfcFace") {}
  2181. ListOf< Lazy< IfcFaceBound >, 1, 0 > Bounds;
  2182. };
  2183. // C++ wrapper for IfcFaceBasedSurfaceModel
  2184. struct IfcFaceBasedSurfaceModel : IfcGeometricRepresentationItem, ObjectHelper<IfcFaceBasedSurfaceModel,1> { IfcFaceBasedSurfaceModel() : Object("IfcFaceBasedSurfaceModel") {}
  2185. ListOf< Lazy< IfcConnectedFaceSet >, 1, 0 > FbsmFaces;
  2186. };
  2187. // C++ wrapper for IfcFaceBound
  2188. struct IfcFaceBound : IfcTopologicalRepresentationItem, ObjectHelper<IfcFaceBound,2> { IfcFaceBound() : Object("IfcFaceBound") {}
  2189. Lazy< IfcLoop > Bound;
  2190. BOOLEAN::Out Orientation;
  2191. };
  2192. // C++ wrapper for IfcFaceOuterBound
  2193. struct IfcFaceOuterBound : IfcFaceBound, ObjectHelper<IfcFaceOuterBound,0> { IfcFaceOuterBound() : Object("IfcFaceOuterBound") {}
  2194. };
  2195. // C++ wrapper for IfcFaceSurface
  2196. struct IfcFaceSurface : IfcFace, ObjectHelper<IfcFaceSurface,2> { IfcFaceSurface() : Object("IfcFaceSurface") {}
  2197. Lazy< IfcSurface > FaceSurface;
  2198. BOOLEAN::Out SameSense;
  2199. };
  2200. // C++ wrapper for IfcManifoldSolidBrep
  2201. struct IfcManifoldSolidBrep : IfcSolidModel, ObjectHelper<IfcManifoldSolidBrep,1> { IfcManifoldSolidBrep() : Object("IfcManifoldSolidBrep") {}
  2202. Lazy< IfcClosedShell > Outer;
  2203. };
  2204. // C++ wrapper for IfcFacetedBrep
  2205. struct IfcFacetedBrep : IfcManifoldSolidBrep, ObjectHelper<IfcFacetedBrep,0> { IfcFacetedBrep() : Object("IfcFacetedBrep") {}
  2206. };
  2207. // C++ wrapper for IfcFacetedBrepWithVoids
  2208. struct IfcFacetedBrepWithVoids : IfcManifoldSolidBrep, ObjectHelper<IfcFacetedBrepWithVoids,1> { IfcFacetedBrepWithVoids() : Object("IfcFacetedBrepWithVoids") {}
  2209. ListOf< Lazy< IfcClosedShell >, 1, 0 > Voids;
  2210. };
  2211. // C++ wrapper for IfcFanType
  2212. struct IfcFanType : IfcFlowMovingDeviceType, ObjectHelper<IfcFanType,1> { IfcFanType() : Object("IfcFanType") {}
  2213. IfcFanTypeEnum::Out PredefinedType;
  2214. };
  2215. // C++ wrapper for IfcFastener
  2216. struct IfcFastener : IfcElementComponent, ObjectHelper<IfcFastener,0> { IfcFastener() : Object("IfcFastener") {}
  2217. };
  2218. // C++ wrapper for IfcFastenerType
  2219. struct IfcFastenerType : IfcElementComponentType, ObjectHelper<IfcFastenerType,0> { IfcFastenerType() : Object("IfcFastenerType") {}
  2220. };
  2221. // C++ wrapper for IfcFeatureElementAddition
  2222. struct IfcFeatureElementAddition : IfcFeatureElement, ObjectHelper<IfcFeatureElementAddition,0> { IfcFeatureElementAddition() : Object("IfcFeatureElementAddition") {}
  2223. };
  2224. // C++ wrapper for IfcFillAreaStyleHatching
  2225. struct IfcFillAreaStyleHatching : IfcGeometricRepresentationItem, ObjectHelper<IfcFillAreaStyleHatching,5> { IfcFillAreaStyleHatching() : Object("IfcFillAreaStyleHatching") {}
  2226. Lazy< NotImplemented > HatchLineAppearance;
  2227. IfcHatchLineDistanceSelect::Out StartOfNextHatchLine;
  2228. Maybe< Lazy< IfcCartesianPoint > > PointOfReferenceHatchLine;
  2229. Maybe< Lazy< IfcCartesianPoint > > PatternStart;
  2230. IfcPlaneAngleMeasure::Out HatchLineAngle;
  2231. };
  2232. // C++ wrapper for IfcFillAreaStyleTileSymbolWithStyle
  2233. struct IfcFillAreaStyleTileSymbolWithStyle : IfcGeometricRepresentationItem, ObjectHelper<IfcFillAreaStyleTileSymbolWithStyle,1> { IfcFillAreaStyleTileSymbolWithStyle() : Object("IfcFillAreaStyleTileSymbolWithStyle") {}
  2234. Lazy< IfcAnnotationSymbolOccurrence > Symbol;
  2235. };
  2236. // C++ wrapper for IfcFillAreaStyleTiles
  2237. struct IfcFillAreaStyleTiles : IfcGeometricRepresentationItem, ObjectHelper<IfcFillAreaStyleTiles,3> { IfcFillAreaStyleTiles() : Object("IfcFillAreaStyleTiles") {}
  2238. Lazy< IfcOneDirectionRepeatFactor > TilingPattern;
  2239. ListOf< IfcFillAreaStyleTileShapeSelect, 1, 0 >::Out Tiles;
  2240. IfcPositiveRatioMeasure::Out TilingScale;
  2241. };
  2242. // C++ wrapper for IfcFilterType
  2243. struct IfcFilterType : IfcFlowTreatmentDeviceType, ObjectHelper<IfcFilterType,1> { IfcFilterType() : Object("IfcFilterType") {}
  2244. IfcFilterTypeEnum::Out PredefinedType;
  2245. };
  2246. // C++ wrapper for IfcFireSuppressionTerminalType
  2247. struct IfcFireSuppressionTerminalType : IfcFlowTerminalType, ObjectHelper<IfcFireSuppressionTerminalType,1> { IfcFireSuppressionTerminalType() : Object("IfcFireSuppressionTerminalType") {}
  2248. IfcFireSuppressionTerminalTypeEnum::Out PredefinedType;
  2249. };
  2250. // C++ wrapper for IfcFlowFitting
  2251. struct IfcFlowFitting : IfcDistributionFlowElement, ObjectHelper<IfcFlowFitting,0> { IfcFlowFitting() : Object("IfcFlowFitting") {}
  2252. };
  2253. // C++ wrapper for IfcFlowInstrumentType
  2254. struct IfcFlowInstrumentType : IfcDistributionControlElementType, ObjectHelper<IfcFlowInstrumentType,1> { IfcFlowInstrumentType() : Object("IfcFlowInstrumentType") {}
  2255. IfcFlowInstrumentTypeEnum::Out PredefinedType;
  2256. };
  2257. // C++ wrapper for IfcFlowMeterType
  2258. struct IfcFlowMeterType : IfcFlowControllerType, ObjectHelper<IfcFlowMeterType,1> { IfcFlowMeterType() : Object("IfcFlowMeterType") {}
  2259. IfcFlowMeterTypeEnum::Out PredefinedType;
  2260. };
  2261. // C++ wrapper for IfcFlowMovingDevice
  2262. struct IfcFlowMovingDevice : IfcDistributionFlowElement, ObjectHelper<IfcFlowMovingDevice,0> { IfcFlowMovingDevice() : Object("IfcFlowMovingDevice") {}
  2263. };
  2264. // C++ wrapper for IfcFlowSegment
  2265. struct IfcFlowSegment : IfcDistributionFlowElement, ObjectHelper<IfcFlowSegment,0> { IfcFlowSegment() : Object("IfcFlowSegment") {}
  2266. };
  2267. // C++ wrapper for IfcFlowStorageDevice
  2268. struct IfcFlowStorageDevice : IfcDistributionFlowElement, ObjectHelper<IfcFlowStorageDevice,0> { IfcFlowStorageDevice() : Object("IfcFlowStorageDevice") {}
  2269. };
  2270. // C++ wrapper for IfcFlowTerminal
  2271. struct IfcFlowTerminal : IfcDistributionFlowElement, ObjectHelper<IfcFlowTerminal,0> { IfcFlowTerminal() : Object("IfcFlowTerminal") {}
  2272. };
  2273. // C++ wrapper for IfcFlowTreatmentDevice
  2274. struct IfcFlowTreatmentDevice : IfcDistributionFlowElement, ObjectHelper<IfcFlowTreatmentDevice,0> { IfcFlowTreatmentDevice() : Object("IfcFlowTreatmentDevice") {}
  2275. };
  2276. // C++ wrapper for IfcFooting
  2277. struct IfcFooting : IfcBuildingElement, ObjectHelper<IfcFooting,1> { IfcFooting() : Object("IfcFooting") {}
  2278. IfcFootingTypeEnum::Out PredefinedType;
  2279. };
  2280. // C++ wrapper for IfcFurnishingElement
  2281. struct IfcFurnishingElement : IfcElement, ObjectHelper<IfcFurnishingElement,0> { IfcFurnishingElement() : Object("IfcFurnishingElement") {}
  2282. };
  2283. // C++ wrapper for IfcFurnishingElementType
  2284. struct IfcFurnishingElementType : IfcElementType, ObjectHelper<IfcFurnishingElementType,0> { IfcFurnishingElementType() : Object("IfcFurnishingElementType") {}
  2285. };
  2286. // C++ wrapper for IfcFurnitureStandard
  2287. struct IfcFurnitureStandard : IfcControl, ObjectHelper<IfcFurnitureStandard,0> { IfcFurnitureStandard() : Object("IfcFurnitureStandard") {}
  2288. };
  2289. // C++ wrapper for IfcFurnitureType
  2290. struct IfcFurnitureType : IfcFurnishingElementType, ObjectHelper<IfcFurnitureType,1> { IfcFurnitureType() : Object("IfcFurnitureType") {}
  2291. IfcAssemblyPlaceEnum::Out AssemblyPlace;
  2292. };
  2293. // C++ wrapper for IfcGasTerminalType
  2294. struct IfcGasTerminalType : IfcFlowTerminalType, ObjectHelper<IfcGasTerminalType,1> { IfcGasTerminalType() : Object("IfcGasTerminalType") {}
  2295. IfcGasTerminalTypeEnum::Out PredefinedType;
  2296. };
  2297. // C++ wrapper for IfcGeometricSet
  2298. struct IfcGeometricSet : IfcGeometricRepresentationItem, ObjectHelper<IfcGeometricSet,1> { IfcGeometricSet() : Object("IfcGeometricSet") {}
  2299. ListOf< IfcGeometricSetSelect, 1, 0 >::Out Elements;
  2300. };
  2301. // C++ wrapper for IfcGeometricCurveSet
  2302. struct IfcGeometricCurveSet : IfcGeometricSet, ObjectHelper<IfcGeometricCurveSet,0> { IfcGeometricCurveSet() : Object("IfcGeometricCurveSet") {}
  2303. };
  2304. // C++ wrapper for IfcRepresentationContext
  2305. struct IfcRepresentationContext : ObjectHelper<IfcRepresentationContext,2> { IfcRepresentationContext() : Object("IfcRepresentationContext") {}
  2306. Maybe< IfcLabel::Out > ContextIdentifier;
  2307. Maybe< IfcLabel::Out > ContextType;
  2308. };
  2309. // C++ wrapper for IfcGeometricRepresentationContext
  2310. struct IfcGeometricRepresentationContext : IfcRepresentationContext, ObjectHelper<IfcGeometricRepresentationContext,4> { IfcGeometricRepresentationContext() : Object("IfcGeometricRepresentationContext") {}
  2311. IfcDimensionCount::Out CoordinateSpaceDimension;
  2312. Maybe< REAL::Out > Precision;
  2313. IfcAxis2Placement::Out WorldCoordinateSystem;
  2314. Maybe< Lazy< IfcDirection > > TrueNorth;
  2315. };
  2316. // C++ wrapper for IfcGeometricRepresentationSubContext
  2317. struct IfcGeometricRepresentationSubContext : IfcGeometricRepresentationContext, ObjectHelper<IfcGeometricRepresentationSubContext,4> { IfcGeometricRepresentationSubContext() : Object("IfcGeometricRepresentationSubContext") {}
  2318. Lazy< IfcGeometricRepresentationContext > ParentContext;
  2319. Maybe< IfcPositiveRatioMeasure::Out > TargetScale;
  2320. IfcGeometricProjectionEnum::Out TargetView;
  2321. Maybe< IfcLabel::Out > UserDefinedTargetView;
  2322. };
  2323. // C++ wrapper for IfcGrid
  2324. struct IfcGrid : IfcProduct, ObjectHelper<IfcGrid,3> { IfcGrid() : Object("IfcGrid") {}
  2325. ListOf< Lazy< NotImplemented >, 1, 0 > UAxes;
  2326. ListOf< Lazy< NotImplemented >, 1, 0 > VAxes;
  2327. Maybe< ListOf< Lazy< NotImplemented >, 1, 0 > > WAxes;
  2328. };
  2329. // C++ wrapper for IfcObjectPlacement
  2330. struct IfcObjectPlacement : ObjectHelper<IfcObjectPlacement,0> { IfcObjectPlacement() : Object("IfcObjectPlacement") {}
  2331. };
  2332. // C++ wrapper for IfcGridPlacement
  2333. struct IfcGridPlacement : IfcObjectPlacement, ObjectHelper<IfcGridPlacement,2> { IfcGridPlacement() : Object("IfcGridPlacement") {}
  2334. Lazy< NotImplemented > PlacementLocation;
  2335. Maybe< Lazy< NotImplemented > > PlacementRefDirection;
  2336. };
  2337. // C++ wrapper for IfcHeatExchangerType
  2338. struct IfcHeatExchangerType : IfcEnergyConversionDeviceType, ObjectHelper<IfcHeatExchangerType,1> { IfcHeatExchangerType() : Object("IfcHeatExchangerType") {}
  2339. IfcHeatExchangerTypeEnum::Out PredefinedType;
  2340. };
  2341. // C++ wrapper for IfcHumidifierType
  2342. struct IfcHumidifierType : IfcEnergyConversionDeviceType, ObjectHelper<IfcHumidifierType,1> { IfcHumidifierType() : Object("IfcHumidifierType") {}
  2343. IfcHumidifierTypeEnum::Out PredefinedType;
  2344. };
  2345. // C++ wrapper for IfcInventory
  2346. struct IfcInventory : IfcGroup, ObjectHelper<IfcInventory,6> { IfcInventory() : Object("IfcInventory") {}
  2347. IfcInventoryTypeEnum::Out InventoryType;
  2348. IfcActorSelect::Out Jurisdiction;
  2349. ListOf< Lazy< NotImplemented >, 1, 0 > ResponsiblePersons;
  2350. Lazy< NotImplemented > LastUpdateDate;
  2351. Maybe< Lazy< NotImplemented > > CurrentValue;
  2352. Maybe< Lazy< NotImplemented > > OriginalValue;
  2353. };
  2354. // C++ wrapper for IfcJunctionBoxType
  2355. struct IfcJunctionBoxType : IfcFlowFittingType, ObjectHelper<IfcJunctionBoxType,1> { IfcJunctionBoxType() : Object("IfcJunctionBoxType") {}
  2356. IfcJunctionBoxTypeEnum::Out PredefinedType;
  2357. };
  2358. // C++ wrapper for IfcLShapeProfileDef
  2359. struct IfcLShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcLShapeProfileDef,8> { IfcLShapeProfileDef() : Object("IfcLShapeProfileDef") {}
  2360. IfcPositiveLengthMeasure::Out Depth;
  2361. Maybe< IfcPositiveLengthMeasure::Out > Width;
  2362. IfcPositiveLengthMeasure::Out Thickness;
  2363. Maybe< IfcPositiveLengthMeasure::Out > FilletRadius;
  2364. Maybe< IfcPositiveLengthMeasure::Out > EdgeRadius;
  2365. Maybe< IfcPlaneAngleMeasure::Out > LegSlope;
  2366. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInX;
  2367. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInY;
  2368. };
  2369. // C++ wrapper for IfcLaborResource
  2370. struct IfcLaborResource : IfcConstructionResource, ObjectHelper<IfcLaborResource,1> { IfcLaborResource() : Object("IfcLaborResource") {}
  2371. Maybe< IfcText::Out > SkillSet;
  2372. };
  2373. // C++ wrapper for IfcLampType
  2374. struct IfcLampType : IfcFlowTerminalType, ObjectHelper<IfcLampType,1> { IfcLampType() : Object("IfcLampType") {}
  2375. IfcLampTypeEnum::Out PredefinedType;
  2376. };
  2377. // C++ wrapper for IfcLightFixtureType
  2378. struct IfcLightFixtureType : IfcFlowTerminalType, ObjectHelper<IfcLightFixtureType,1> { IfcLightFixtureType() : Object("IfcLightFixtureType") {}
  2379. IfcLightFixtureTypeEnum::Out PredefinedType;
  2380. };
  2381. // C++ wrapper for IfcLightSource
  2382. struct IfcLightSource : IfcGeometricRepresentationItem, ObjectHelper<IfcLightSource,4> { IfcLightSource() : Object("IfcLightSource") {}
  2383. Maybe< IfcLabel::Out > Name;
  2384. Lazy< IfcColourRgb > LightColour;
  2385. Maybe< IfcNormalisedRatioMeasure::Out > AmbientIntensity;
  2386. Maybe< IfcNormalisedRatioMeasure::Out > Intensity;
  2387. };
  2388. // C++ wrapper for IfcLightSourceAmbient
  2389. struct IfcLightSourceAmbient : IfcLightSource, ObjectHelper<IfcLightSourceAmbient,0> { IfcLightSourceAmbient() : Object("IfcLightSourceAmbient") {}
  2390. };
  2391. // C++ wrapper for IfcLightSourceDirectional
  2392. struct IfcLightSourceDirectional : IfcLightSource, ObjectHelper<IfcLightSourceDirectional,1> { IfcLightSourceDirectional() : Object("IfcLightSourceDirectional") {}
  2393. Lazy< IfcDirection > Orientation;
  2394. };
  2395. // C++ wrapper for IfcLightSourceGoniometric
  2396. struct IfcLightSourceGoniometric : IfcLightSource, ObjectHelper<IfcLightSourceGoniometric,6> { IfcLightSourceGoniometric() : Object("IfcLightSourceGoniometric") {}
  2397. Lazy< IfcAxis2Placement3D > Position;
  2398. Maybe< Lazy< IfcColourRgb > > ColourAppearance;
  2399. IfcThermodynamicTemperatureMeasure::Out ColourTemperature;
  2400. IfcLuminousFluxMeasure::Out LuminousFlux;
  2401. IfcLightEmissionSourceEnum::Out LightEmissionSource;
  2402. IfcLightDistributionDataSourceSelect::Out LightDistributionDataSource;
  2403. };
  2404. // C++ wrapper for IfcLightSourcePositional
  2405. struct IfcLightSourcePositional : IfcLightSource, ObjectHelper<IfcLightSourcePositional,5> { IfcLightSourcePositional() : Object("IfcLightSourcePositional") {}
  2406. Lazy< IfcCartesianPoint > Position;
  2407. IfcPositiveLengthMeasure::Out Radius;
  2408. IfcReal::Out ConstantAttenuation;
  2409. IfcReal::Out DistanceAttenuation;
  2410. IfcReal::Out QuadricAttenuation;
  2411. };
  2412. // C++ wrapper for IfcLightSourceSpot
  2413. struct IfcLightSourceSpot : IfcLightSourcePositional, ObjectHelper<IfcLightSourceSpot,4> { IfcLightSourceSpot() : Object("IfcLightSourceSpot") {}
  2414. Lazy< IfcDirection > Orientation;
  2415. Maybe< IfcReal::Out > ConcentrationExponent;
  2416. IfcPositivePlaneAngleMeasure::Out SpreadAngle;
  2417. IfcPositivePlaneAngleMeasure::Out BeamWidthAngle;
  2418. };
  2419. // C++ wrapper for IfcLine
  2420. struct IfcLine : IfcCurve, ObjectHelper<IfcLine,2> { IfcLine() : Object("IfcLine") {}
  2421. Lazy< IfcCartesianPoint > Pnt;
  2422. Lazy< IfcVector > Dir;
  2423. };
  2424. // C++ wrapper for IfcLinearDimension
  2425. struct IfcLinearDimension : IfcDimensionCurveDirectedCallout, ObjectHelper<IfcLinearDimension,0> { IfcLinearDimension() : Object("IfcLinearDimension") {}
  2426. };
  2427. // C++ wrapper for IfcLocalPlacement
  2428. struct IfcLocalPlacement : IfcObjectPlacement, ObjectHelper<IfcLocalPlacement,2> { IfcLocalPlacement() : Object("IfcLocalPlacement") {}
  2429. Maybe< Lazy< IfcObjectPlacement > > PlacementRelTo;
  2430. IfcAxis2Placement::Out RelativePlacement;
  2431. };
  2432. // C++ wrapper for IfcMappedItem
  2433. struct IfcMappedItem : IfcRepresentationItem, ObjectHelper<IfcMappedItem,2> { IfcMappedItem() : Object("IfcMappedItem") {}
  2434. Lazy< IfcRepresentationMap > MappingSource;
  2435. Lazy< IfcCartesianTransformationOperator > MappingTarget;
  2436. };
  2437. // C++ wrapper for IfcProductRepresentation
  2438. struct IfcProductRepresentation : ObjectHelper<IfcProductRepresentation,3> { IfcProductRepresentation() : Object("IfcProductRepresentation") {}
  2439. Maybe< IfcLabel::Out > Name;
  2440. Maybe< IfcText::Out > Description;
  2441. ListOf< Lazy< IfcRepresentation >, 1, 0 > Representations;
  2442. };
  2443. // C++ wrapper for IfcMaterialDefinitionRepresentation
  2444. struct IfcMaterialDefinitionRepresentation : IfcProductRepresentation, ObjectHelper<IfcMaterialDefinitionRepresentation,1> { IfcMaterialDefinitionRepresentation() : Object("IfcMaterialDefinitionRepresentation") {}
  2445. Lazy< NotImplemented > RepresentedMaterial;
  2446. };
  2447. // C++ wrapper for IfcMeasureWithUnit
  2448. struct IfcMeasureWithUnit : ObjectHelper<IfcMeasureWithUnit,2> { IfcMeasureWithUnit() : Object("IfcMeasureWithUnit") {}
  2449. IfcValue::Out ValueComponent;
  2450. IfcUnit::Out UnitComponent;
  2451. };
  2452. // C++ wrapper for IfcMechanicalFastener
  2453. struct IfcMechanicalFastener : IfcFastener, ObjectHelper<IfcMechanicalFastener,2> { IfcMechanicalFastener() : Object("IfcMechanicalFastener") {}
  2454. Maybe< IfcPositiveLengthMeasure::Out > NominalDiameter;
  2455. Maybe< IfcPositiveLengthMeasure::Out > NominalLength;
  2456. };
  2457. // C++ wrapper for IfcMechanicalFastenerType
  2458. struct IfcMechanicalFastenerType : IfcFastenerType, ObjectHelper<IfcMechanicalFastenerType,0> { IfcMechanicalFastenerType() : Object("IfcMechanicalFastenerType") {}
  2459. };
  2460. // C++ wrapper for IfcMember
  2461. struct IfcMember : IfcBuildingElement, ObjectHelper<IfcMember,0> { IfcMember() : Object("IfcMember") {}
  2462. };
  2463. // C++ wrapper for IfcMemberType
  2464. struct IfcMemberType : IfcBuildingElementType, ObjectHelper<IfcMemberType,1> { IfcMemberType() : Object("IfcMemberType") {}
  2465. IfcMemberTypeEnum::Out PredefinedType;
  2466. };
  2467. // C++ wrapper for IfcMotorConnectionType
  2468. struct IfcMotorConnectionType : IfcEnergyConversionDeviceType, ObjectHelper<IfcMotorConnectionType,1> { IfcMotorConnectionType() : Object("IfcMotorConnectionType") {}
  2469. IfcMotorConnectionTypeEnum::Out PredefinedType;
  2470. };
  2471. // C++ wrapper for IfcProcess
  2472. struct IfcProcess : IfcObject, ObjectHelper<IfcProcess,0> { IfcProcess() : Object("IfcProcess") {}
  2473. };
  2474. // C++ wrapper for IfcTask
  2475. struct IfcTask : IfcProcess, ObjectHelper<IfcTask,5> { IfcTask() : Object("IfcTask") {}
  2476. IfcIdentifier::Out TaskId;
  2477. Maybe< IfcLabel::Out > Status;
  2478. Maybe< IfcLabel::Out > WorkMethod;
  2479. BOOLEAN::Out IsMilestone;
  2480. Maybe< INTEGER::Out > Priority;
  2481. };
  2482. // C++ wrapper for IfcMove
  2483. struct IfcMove : IfcTask, ObjectHelper<IfcMove,3> { IfcMove() : Object("IfcMove") {}
  2484. Lazy< IfcSpatialStructureElement > MoveFrom;
  2485. Lazy< IfcSpatialStructureElement > MoveTo;
  2486. Maybe< ListOf< IfcText, 1, 0 >::Out > PunchList;
  2487. };
  2488. // C++ wrapper for IfcOccupant
  2489. struct IfcOccupant : IfcActor, ObjectHelper<IfcOccupant,1> { IfcOccupant() : Object("IfcOccupant") {}
  2490. IfcOccupantTypeEnum::Out PredefinedType;
  2491. };
  2492. // C++ wrapper for IfcOffsetCurve2D
  2493. struct IfcOffsetCurve2D : IfcCurve, ObjectHelper<IfcOffsetCurve2D,3> { IfcOffsetCurve2D() : Object("IfcOffsetCurve2D") {}
  2494. Lazy< IfcCurve > BasisCurve;
  2495. IfcLengthMeasure::Out Distance;
  2496. LOGICAL::Out SelfIntersect;
  2497. };
  2498. // C++ wrapper for IfcOffsetCurve3D
  2499. struct IfcOffsetCurve3D : IfcCurve, ObjectHelper<IfcOffsetCurve3D,4> { IfcOffsetCurve3D() : Object("IfcOffsetCurve3D") {}
  2500. Lazy< IfcCurve > BasisCurve;
  2501. IfcLengthMeasure::Out Distance;
  2502. LOGICAL::Out SelfIntersect;
  2503. Lazy< IfcDirection > RefDirection;
  2504. };
  2505. // C++ wrapper for IfcOneDirectionRepeatFactor
  2506. struct IfcOneDirectionRepeatFactor : IfcGeometricRepresentationItem, ObjectHelper<IfcOneDirectionRepeatFactor,1> { IfcOneDirectionRepeatFactor() : Object("IfcOneDirectionRepeatFactor") {}
  2507. Lazy< IfcVector > RepeatFactor;
  2508. };
  2509. // C++ wrapper for IfcOpenShell
  2510. struct IfcOpenShell : IfcConnectedFaceSet, ObjectHelper<IfcOpenShell,0> { IfcOpenShell() : Object("IfcOpenShell") {}
  2511. };
  2512. // C++ wrapper for IfcOpeningElement
  2513. struct IfcOpeningElement : IfcFeatureElementSubtraction, ObjectHelper<IfcOpeningElement,0> { IfcOpeningElement() : Object("IfcOpeningElement") {}
  2514. };
  2515. // C++ wrapper for IfcOrderAction
  2516. struct IfcOrderAction : IfcTask, ObjectHelper<IfcOrderAction,1> { IfcOrderAction() : Object("IfcOrderAction") {}
  2517. IfcIdentifier::Out ActionID;
  2518. };
  2519. // C++ wrapper for IfcOrientedEdge
  2520. struct IfcOrientedEdge : IfcEdge, ObjectHelper<IfcOrientedEdge,2> { IfcOrientedEdge() : Object("IfcOrientedEdge") {}
  2521. Lazy< IfcEdge > EdgeElement;
  2522. BOOLEAN::Out Orientation;
  2523. };
  2524. // C++ wrapper for IfcOutletType
  2525. struct IfcOutletType : IfcFlowTerminalType, ObjectHelper<IfcOutletType,1> { IfcOutletType() : Object("IfcOutletType") {}
  2526. IfcOutletTypeEnum::Out PredefinedType;
  2527. };
  2528. // C++ wrapper for IfcPath
  2529. struct IfcPath : IfcTopologicalRepresentationItem, ObjectHelper<IfcPath,1> { IfcPath() : Object("IfcPath") {}
  2530. ListOf< Lazy< IfcOrientedEdge >, 1, 0 > EdgeList;
  2531. };
  2532. // C++ wrapper for IfcPerformanceHistory
  2533. struct IfcPerformanceHistory : IfcControl, ObjectHelper<IfcPerformanceHistory,1> { IfcPerformanceHistory() : Object("IfcPerformanceHistory") {}
  2534. IfcLabel::Out LifeCyclePhase;
  2535. };
  2536. // C++ wrapper for IfcPermit
  2537. struct IfcPermit : IfcControl, ObjectHelper<IfcPermit,1> { IfcPermit() : Object("IfcPermit") {}
  2538. IfcIdentifier::Out PermitID;
  2539. };
  2540. // C++ wrapper for IfcPile
  2541. struct IfcPile : IfcBuildingElement, ObjectHelper<IfcPile,2> { IfcPile() : Object("IfcPile") {}
  2542. IfcPileTypeEnum::Out PredefinedType;
  2543. Maybe< IfcPileConstructionEnum::Out > ConstructionType;
  2544. };
  2545. // C++ wrapper for IfcPipeFittingType
  2546. struct IfcPipeFittingType : IfcFlowFittingType, ObjectHelper<IfcPipeFittingType,1> { IfcPipeFittingType() : Object("IfcPipeFittingType") {}
  2547. IfcPipeFittingTypeEnum::Out PredefinedType;
  2548. };
  2549. // C++ wrapper for IfcPipeSegmentType
  2550. struct IfcPipeSegmentType : IfcFlowSegmentType, ObjectHelper<IfcPipeSegmentType,1> { IfcPipeSegmentType() : Object("IfcPipeSegmentType") {}
  2551. IfcPipeSegmentTypeEnum::Out PredefinedType;
  2552. };
  2553. // C++ wrapper for IfcPlanarExtent
  2554. struct IfcPlanarExtent : IfcGeometricRepresentationItem, ObjectHelper<IfcPlanarExtent,2> { IfcPlanarExtent() : Object("IfcPlanarExtent") {}
  2555. IfcLengthMeasure::Out SizeInX;
  2556. IfcLengthMeasure::Out SizeInY;
  2557. };
  2558. // C++ wrapper for IfcPlanarBox
  2559. struct IfcPlanarBox : IfcPlanarExtent, ObjectHelper<IfcPlanarBox,1> { IfcPlanarBox() : Object("IfcPlanarBox") {}
  2560. IfcAxis2Placement::Out Placement;
  2561. };
  2562. // C++ wrapper for IfcPlane
  2563. struct IfcPlane : IfcElementarySurface, ObjectHelper<IfcPlane,0> { IfcPlane() : Object("IfcPlane") {}
  2564. };
  2565. // C++ wrapper for IfcPlate
  2566. struct IfcPlate : IfcBuildingElement, ObjectHelper<IfcPlate,0> { IfcPlate() : Object("IfcPlate") {}
  2567. };
  2568. // C++ wrapper for IfcPlateType
  2569. struct IfcPlateType : IfcBuildingElementType, ObjectHelper<IfcPlateType,1> { IfcPlateType() : Object("IfcPlateType") {}
  2570. IfcPlateTypeEnum::Out PredefinedType;
  2571. };
  2572. // C++ wrapper for IfcPointOnCurve
  2573. struct IfcPointOnCurve : IfcPoint, ObjectHelper<IfcPointOnCurve,2> { IfcPointOnCurve() : Object("IfcPointOnCurve") {}
  2574. Lazy< IfcCurve > BasisCurve;
  2575. IfcParameterValue::Out PointParameter;
  2576. };
  2577. // C++ wrapper for IfcPointOnSurface
  2578. struct IfcPointOnSurface : IfcPoint, ObjectHelper<IfcPointOnSurface,3> { IfcPointOnSurface() : Object("IfcPointOnSurface") {}
  2579. Lazy< IfcSurface > BasisSurface;
  2580. IfcParameterValue::Out PointParameterU;
  2581. IfcParameterValue::Out PointParameterV;
  2582. };
  2583. // C++ wrapper for IfcPolyLoop
  2584. struct IfcPolyLoop : IfcLoop, ObjectHelper<IfcPolyLoop,1> { IfcPolyLoop() : Object("IfcPolyLoop") {}
  2585. ListOf< Lazy< IfcCartesianPoint >, 3, 0 > Polygon;
  2586. };
  2587. // C++ wrapper for IfcPolygonalBoundedHalfSpace
  2588. struct IfcPolygonalBoundedHalfSpace : IfcHalfSpaceSolid, ObjectHelper<IfcPolygonalBoundedHalfSpace,2> { IfcPolygonalBoundedHalfSpace() : Object("IfcPolygonalBoundedHalfSpace") {}
  2589. Lazy< IfcAxis2Placement3D > Position;
  2590. Lazy< IfcBoundedCurve > PolygonalBoundary;
  2591. };
  2592. // C++ wrapper for IfcPolyline
  2593. struct IfcPolyline : IfcBoundedCurve, ObjectHelper<IfcPolyline,1> { IfcPolyline() : Object("IfcPolyline") {}
  2594. ListOf< Lazy< IfcCartesianPoint >, 2, 0 > Points;
  2595. };
  2596. // C++ wrapper for IfcPresentationStyleAssignment
  2597. struct IfcPresentationStyleAssignment : ObjectHelper<IfcPresentationStyleAssignment,1> { IfcPresentationStyleAssignment() : Object("IfcPresentationStyleAssignment") {}
  2598. ListOf< IfcPresentationStyleSelect, 1, 0 >::Out Styles;
  2599. };
  2600. // C++ wrapper for IfcProcedure
  2601. struct IfcProcedure : IfcProcess, ObjectHelper<IfcProcedure,3> { IfcProcedure() : Object("IfcProcedure") {}
  2602. IfcIdentifier::Out ProcedureID;
  2603. IfcProcedureTypeEnum::Out ProcedureType;
  2604. Maybe< IfcLabel::Out > UserDefinedProcedureType;
  2605. };
  2606. // C++ wrapper for IfcProductDefinitionShape
  2607. struct IfcProductDefinitionShape : IfcProductRepresentation, ObjectHelper<IfcProductDefinitionShape,0> { IfcProductDefinitionShape() : Object("IfcProductDefinitionShape") {}
  2608. };
  2609. // C++ wrapper for IfcProject
  2610. struct IfcProject : IfcObject, ObjectHelper<IfcProject,4> { IfcProject() : Object("IfcProject") {}
  2611. Maybe< IfcLabel::Out > LongName;
  2612. Maybe< IfcLabel::Out > Phase;
  2613. ListOf< Lazy< IfcRepresentationContext >, 1, 0 > RepresentationContexts;
  2614. Lazy< IfcUnitAssignment > UnitsInContext;
  2615. };
  2616. // C++ wrapper for IfcProjectOrder
  2617. struct IfcProjectOrder : IfcControl, ObjectHelper<IfcProjectOrder,3> { IfcProjectOrder() : Object("IfcProjectOrder") {}
  2618. IfcIdentifier::Out ID;
  2619. IfcProjectOrderTypeEnum::Out PredefinedType;
  2620. Maybe< IfcLabel::Out > Status;
  2621. };
  2622. // C++ wrapper for IfcProjectOrderRecord
  2623. struct IfcProjectOrderRecord : IfcControl, ObjectHelper<IfcProjectOrderRecord,2> { IfcProjectOrderRecord() : Object("IfcProjectOrderRecord") {}
  2624. ListOf< Lazy< NotImplemented >, 1, 0 > Records;
  2625. IfcProjectOrderRecordTypeEnum::Out PredefinedType;
  2626. };
  2627. // C++ wrapper for IfcProjectionCurve
  2628. struct IfcProjectionCurve : IfcAnnotationCurveOccurrence, ObjectHelper<IfcProjectionCurve,0> { IfcProjectionCurve() : Object("IfcProjectionCurve") {}
  2629. };
  2630. // C++ wrapper for IfcProjectionElement
  2631. struct IfcProjectionElement : IfcFeatureElementAddition, ObjectHelper<IfcProjectionElement,0> { IfcProjectionElement() : Object("IfcProjectionElement") {}
  2632. };
  2633. // C++ wrapper for IfcSimpleProperty
  2634. struct IfcSimpleProperty : IfcProperty, ObjectHelper<IfcSimpleProperty,0> { IfcSimpleProperty() : Object("IfcSimpleProperty") {}
  2635. };
  2636. // C++ wrapper for IfcPropertyBoundedValue
  2637. struct IfcPropertyBoundedValue : IfcSimpleProperty, ObjectHelper<IfcPropertyBoundedValue,3> { IfcPropertyBoundedValue() : Object("IfcPropertyBoundedValue") {}
  2638. Maybe< IfcValue::Out > UpperBoundValue;
  2639. Maybe< IfcValue::Out > LowerBoundValue;
  2640. Maybe< IfcUnit::Out > Unit;
  2641. };
  2642. // C++ wrapper for IfcPropertyEnumeratedValue
  2643. struct IfcPropertyEnumeratedValue : IfcSimpleProperty, ObjectHelper<IfcPropertyEnumeratedValue,2> { IfcPropertyEnumeratedValue() : Object("IfcPropertyEnumeratedValue") {}
  2644. ListOf< IfcValue, 1, 0 >::Out EnumerationValues;
  2645. Maybe< Lazy< NotImplemented > > EnumerationReference;
  2646. };
  2647. // C++ wrapper for IfcPropertyListValue
  2648. struct IfcPropertyListValue : IfcSimpleProperty, ObjectHelper<IfcPropertyListValue,2> { IfcPropertyListValue() : Object("IfcPropertyListValue") {}
  2649. ListOf< IfcValue, 1, 0 >::Out ListValues;
  2650. Maybe< IfcUnit::Out > Unit;
  2651. };
  2652. // C++ wrapper for IfcPropertyReferenceValue
  2653. struct IfcPropertyReferenceValue : IfcSimpleProperty, ObjectHelper<IfcPropertyReferenceValue,2> { IfcPropertyReferenceValue() : Object("IfcPropertyReferenceValue") {}
  2654. Maybe< IfcLabel::Out > UsageName;
  2655. IfcObjectReferenceSelect::Out PropertyReference;
  2656. };
  2657. // C++ wrapper for IfcPropertySet
  2658. struct IfcPropertySet : IfcPropertySetDefinition, ObjectHelper<IfcPropertySet,1> { IfcPropertySet() : Object("IfcPropertySet") {}
  2659. ListOf< Lazy< IfcProperty >, 1, 0 > HasProperties;
  2660. };
  2661. // C++ wrapper for IfcPropertySingleValue
  2662. struct IfcPropertySingleValue : IfcSimpleProperty, ObjectHelper<IfcPropertySingleValue,2> { IfcPropertySingleValue() : Object("IfcPropertySingleValue") {}
  2663. Maybe< IfcValue::Out > NominalValue;
  2664. Maybe< IfcUnit::Out > Unit;
  2665. };
  2666. // C++ wrapper for IfcPropertyTableValue
  2667. struct IfcPropertyTableValue : IfcSimpleProperty, ObjectHelper<IfcPropertyTableValue,5> { IfcPropertyTableValue() : Object("IfcPropertyTableValue") {}
  2668. ListOf< IfcValue, 1, 0 >::Out DefiningValues;
  2669. ListOf< IfcValue, 1, 0 >::Out DefinedValues;
  2670. Maybe< IfcText::Out > Expression;
  2671. Maybe< IfcUnit::Out > DefiningUnit;
  2672. Maybe< IfcUnit::Out > DefinedUnit;
  2673. };
  2674. // C++ wrapper for IfcProtectiveDeviceType
  2675. struct IfcProtectiveDeviceType : IfcFlowControllerType, ObjectHelper<IfcProtectiveDeviceType,1> { IfcProtectiveDeviceType() : Object("IfcProtectiveDeviceType") {}
  2676. IfcProtectiveDeviceTypeEnum::Out PredefinedType;
  2677. };
  2678. // C++ wrapper for IfcProxy
  2679. struct IfcProxy : IfcProduct, ObjectHelper<IfcProxy,2> { IfcProxy() : Object("IfcProxy") {}
  2680. IfcObjectTypeEnum::Out ProxyType;
  2681. Maybe< IfcLabel::Out > Tag;
  2682. };
  2683. // C++ wrapper for IfcPumpType
  2684. struct IfcPumpType : IfcFlowMovingDeviceType, ObjectHelper<IfcPumpType,1> { IfcPumpType() : Object("IfcPumpType") {}
  2685. IfcPumpTypeEnum::Out PredefinedType;
  2686. };
  2687. // C++ wrapper for IfcRadiusDimension
  2688. struct IfcRadiusDimension : IfcDimensionCurveDirectedCallout, ObjectHelper<IfcRadiusDimension,0> { IfcRadiusDimension() : Object("IfcRadiusDimension") {}
  2689. };
  2690. // C++ wrapper for IfcRailing
  2691. struct IfcRailing : IfcBuildingElement, ObjectHelper<IfcRailing,1> { IfcRailing() : Object("IfcRailing") {}
  2692. Maybe< IfcRailingTypeEnum::Out > PredefinedType;
  2693. };
  2694. // C++ wrapper for IfcRailingType
  2695. struct IfcRailingType : IfcBuildingElementType, ObjectHelper<IfcRailingType,1> { IfcRailingType() : Object("IfcRailingType") {}
  2696. IfcRailingTypeEnum::Out PredefinedType;
  2697. };
  2698. // C++ wrapper for IfcRamp
  2699. struct IfcRamp : IfcBuildingElement, ObjectHelper<IfcRamp,1> { IfcRamp() : Object("IfcRamp") {}
  2700. IfcRampTypeEnum::Out ShapeType;
  2701. };
  2702. // C++ wrapper for IfcRampFlight
  2703. struct IfcRampFlight : IfcBuildingElement, ObjectHelper<IfcRampFlight,0> { IfcRampFlight() : Object("IfcRampFlight") {}
  2704. };
  2705. // C++ wrapper for IfcRampFlightType
  2706. struct IfcRampFlightType : IfcBuildingElementType, ObjectHelper<IfcRampFlightType,1> { IfcRampFlightType() : Object("IfcRampFlightType") {}
  2707. IfcRampFlightTypeEnum::Out PredefinedType;
  2708. };
  2709. // C++ wrapper for IfcRationalBezierCurve
  2710. struct IfcRationalBezierCurve : IfcBezierCurve, ObjectHelper<IfcRationalBezierCurve,1> { IfcRationalBezierCurve() : Object("IfcRationalBezierCurve") {}
  2711. ListOf< REAL, 2, 0 >::Out WeightsData;
  2712. };
  2713. // C++ wrapper for IfcRectangleProfileDef
  2714. struct IfcRectangleProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcRectangleProfileDef,2> { IfcRectangleProfileDef() : Object("IfcRectangleProfileDef") {}
  2715. IfcPositiveLengthMeasure::Out XDim;
  2716. IfcPositiveLengthMeasure::Out YDim;
  2717. };
  2718. // C++ wrapper for IfcRectangleHollowProfileDef
  2719. struct IfcRectangleHollowProfileDef : IfcRectangleProfileDef, ObjectHelper<IfcRectangleHollowProfileDef,3> { IfcRectangleHollowProfileDef() : Object("IfcRectangleHollowProfileDef") {}
  2720. IfcPositiveLengthMeasure::Out WallThickness;
  2721. Maybe< IfcPositiveLengthMeasure::Out > InnerFilletRadius;
  2722. Maybe< IfcPositiveLengthMeasure::Out > OuterFilletRadius;
  2723. };
  2724. // C++ wrapper for IfcRectangularPyramid
  2725. struct IfcRectangularPyramid : IfcCsgPrimitive3D, ObjectHelper<IfcRectangularPyramid,3> { IfcRectangularPyramid() : Object("IfcRectangularPyramid") {}
  2726. IfcPositiveLengthMeasure::Out XLength;
  2727. IfcPositiveLengthMeasure::Out YLength;
  2728. IfcPositiveLengthMeasure::Out Height;
  2729. };
  2730. // C++ wrapper for IfcRectangularTrimmedSurface
  2731. struct IfcRectangularTrimmedSurface : IfcBoundedSurface, ObjectHelper<IfcRectangularTrimmedSurface,7> { IfcRectangularTrimmedSurface() : Object("IfcRectangularTrimmedSurface") {}
  2732. Lazy< IfcSurface > BasisSurface;
  2733. IfcParameterValue::Out U1;
  2734. IfcParameterValue::Out V1;
  2735. IfcParameterValue::Out U2;
  2736. IfcParameterValue::Out V2;
  2737. BOOLEAN::Out Usense;
  2738. BOOLEAN::Out Vsense;
  2739. };
  2740. // C++ wrapper for IfcReinforcingElement
  2741. struct IfcReinforcingElement : IfcBuildingElementComponent, ObjectHelper<IfcReinforcingElement,1> { IfcReinforcingElement() : Object("IfcReinforcingElement") {}
  2742. Maybe< IfcLabel::Out > SteelGrade;
  2743. };
  2744. // C++ wrapper for IfcReinforcingBar
  2745. struct IfcReinforcingBar : IfcReinforcingElement, ObjectHelper<IfcReinforcingBar,5> { IfcReinforcingBar() : Object("IfcReinforcingBar") {}
  2746. IfcPositiveLengthMeasure::Out NominalDiameter;
  2747. IfcAreaMeasure::Out CrossSectionArea;
  2748. Maybe< IfcPositiveLengthMeasure::Out > BarLength;
  2749. IfcReinforcingBarRoleEnum::Out BarRole;
  2750. Maybe< IfcReinforcingBarSurfaceEnum::Out > BarSurface;
  2751. };
  2752. // C++ wrapper for IfcReinforcingMesh
  2753. struct IfcReinforcingMesh : IfcReinforcingElement, ObjectHelper<IfcReinforcingMesh,8> { IfcReinforcingMesh() : Object("IfcReinforcingMesh") {}
  2754. Maybe< IfcPositiveLengthMeasure::Out > MeshLength;
  2755. Maybe< IfcPositiveLengthMeasure::Out > MeshWidth;
  2756. IfcPositiveLengthMeasure::Out LongitudinalBarNominalDiameter;
  2757. IfcPositiveLengthMeasure::Out TransverseBarNominalDiameter;
  2758. IfcAreaMeasure::Out LongitudinalBarCrossSectionArea;
  2759. IfcAreaMeasure::Out TransverseBarCrossSectionArea;
  2760. IfcPositiveLengthMeasure::Out LongitudinalBarSpacing;
  2761. IfcPositiveLengthMeasure::Out TransverseBarSpacing;
  2762. };
  2763. // C++ wrapper for IfcRelationship
  2764. struct IfcRelationship : IfcRoot, ObjectHelper<IfcRelationship,0> { IfcRelationship() : Object("IfcRelationship") {}
  2765. };
  2766. // C++ wrapper for IfcRelDecomposes
  2767. struct IfcRelDecomposes : IfcRelationship, ObjectHelper<IfcRelDecomposes,2> { IfcRelDecomposes() : Object("IfcRelDecomposes") {}
  2768. Lazy< IfcObjectDefinition > RelatingObject;
  2769. ListOf< Lazy< IfcObjectDefinition >, 1, 0 > RelatedObjects;
  2770. };
  2771. // C++ wrapper for IfcRelAggregates
  2772. struct IfcRelAggregates : IfcRelDecomposes, ObjectHelper<IfcRelAggregates,0> { IfcRelAggregates() : Object("IfcRelAggregates") {}
  2773. };
  2774. // C++ wrapper for IfcRelConnects
  2775. struct IfcRelConnects : IfcRelationship, ObjectHelper<IfcRelConnects,0> { IfcRelConnects() : Object("IfcRelConnects") {}
  2776. };
  2777. // C++ wrapper for IfcRelContainedInSpatialStructure
  2778. struct IfcRelContainedInSpatialStructure : IfcRelConnects, ObjectHelper<IfcRelContainedInSpatialStructure,2> { IfcRelContainedInSpatialStructure() : Object("IfcRelContainedInSpatialStructure") {}
  2779. ListOf< Lazy< IfcProduct >, 1, 0 > RelatedElements;
  2780. Lazy< IfcSpatialStructureElement > RelatingStructure;
  2781. };
  2782. // C++ wrapper for IfcRelDefines
  2783. struct IfcRelDefines : IfcRelationship, ObjectHelper<IfcRelDefines,1> { IfcRelDefines() : Object("IfcRelDefines") {}
  2784. ListOf< Lazy< IfcObject >, 1, 0 > RelatedObjects;
  2785. };
  2786. // C++ wrapper for IfcRelDefinesByProperties
  2787. struct IfcRelDefinesByProperties : IfcRelDefines, ObjectHelper<IfcRelDefinesByProperties,1> { IfcRelDefinesByProperties() : Object("IfcRelDefinesByProperties") {}
  2788. Lazy< IfcPropertySetDefinition > RelatingPropertyDefinition;
  2789. };
  2790. // C++ wrapper for IfcRelFillsElement
  2791. struct IfcRelFillsElement : IfcRelConnects, ObjectHelper<IfcRelFillsElement,2> { IfcRelFillsElement() : Object("IfcRelFillsElement") {}
  2792. Lazy< IfcOpeningElement > RelatingOpeningElement;
  2793. Lazy< IfcElement > RelatedBuildingElement;
  2794. };
  2795. // C++ wrapper for IfcRelOverridesProperties
  2796. struct IfcRelOverridesProperties : IfcRelDefinesByProperties, ObjectHelper<IfcRelOverridesProperties,1> { IfcRelOverridesProperties() : Object("IfcRelOverridesProperties") {}
  2797. ListOf< Lazy< IfcProperty >, 1, 0 > OverridingProperties;
  2798. };
  2799. // C++ wrapper for IfcRelVoidsElement
  2800. struct IfcRelVoidsElement : IfcRelConnects, ObjectHelper<IfcRelVoidsElement,2> { IfcRelVoidsElement() : Object("IfcRelVoidsElement") {}
  2801. Lazy< IfcElement > RelatingBuildingElement;
  2802. Lazy< IfcFeatureElementSubtraction > RelatedOpeningElement;
  2803. };
  2804. // C++ wrapper for IfcRepresentation
  2805. struct IfcRepresentation : ObjectHelper<IfcRepresentation,4> { IfcRepresentation() : Object("IfcRepresentation") {}
  2806. Lazy< IfcRepresentationContext > ContextOfItems;
  2807. Maybe< IfcLabel::Out > RepresentationIdentifier;
  2808. Maybe< IfcLabel::Out > RepresentationType;
  2809. ListOf< Lazy< IfcRepresentationItem >, 1, 0 > Items;
  2810. };
  2811. // C++ wrapper for IfcRepresentationMap
  2812. struct IfcRepresentationMap : ObjectHelper<IfcRepresentationMap,2> { IfcRepresentationMap() : Object("IfcRepresentationMap") {}
  2813. IfcAxis2Placement::Out MappingOrigin;
  2814. Lazy< IfcRepresentation > MappedRepresentation;
  2815. };
  2816. // C++ wrapper for IfcRevolvedAreaSolid
  2817. struct IfcRevolvedAreaSolid : IfcSweptAreaSolid, ObjectHelper<IfcRevolvedAreaSolid,2> { IfcRevolvedAreaSolid() : Object("IfcRevolvedAreaSolid") {}
  2818. Lazy< IfcAxis1Placement > Axis;
  2819. IfcPlaneAngleMeasure::Out Angle;
  2820. };
  2821. // C++ wrapper for IfcRightCircularCone
  2822. struct IfcRightCircularCone : IfcCsgPrimitive3D, ObjectHelper<IfcRightCircularCone,2> { IfcRightCircularCone() : Object("IfcRightCircularCone") {}
  2823. IfcPositiveLengthMeasure::Out Height;
  2824. IfcPositiveLengthMeasure::Out BottomRadius;
  2825. };
  2826. // C++ wrapper for IfcRightCircularCylinder
  2827. struct IfcRightCircularCylinder : IfcCsgPrimitive3D, ObjectHelper<IfcRightCircularCylinder,2> { IfcRightCircularCylinder() : Object("IfcRightCircularCylinder") {}
  2828. IfcPositiveLengthMeasure::Out Height;
  2829. IfcPositiveLengthMeasure::Out Radius;
  2830. };
  2831. // C++ wrapper for IfcRoof
  2832. struct IfcRoof : IfcBuildingElement, ObjectHelper<IfcRoof,1> { IfcRoof() : Object("IfcRoof") {}
  2833. IfcRoofTypeEnum::Out ShapeType;
  2834. };
  2835. // C++ wrapper for IfcRoundedEdgeFeature
  2836. struct IfcRoundedEdgeFeature : IfcEdgeFeature, ObjectHelper<IfcRoundedEdgeFeature,1> { IfcRoundedEdgeFeature() : Object("IfcRoundedEdgeFeature") {}
  2837. Maybe< IfcPositiveLengthMeasure::Out > Radius;
  2838. };
  2839. // C++ wrapper for IfcRoundedRectangleProfileDef
  2840. struct IfcRoundedRectangleProfileDef : IfcRectangleProfileDef, ObjectHelper<IfcRoundedRectangleProfileDef,1> { IfcRoundedRectangleProfileDef() : Object("IfcRoundedRectangleProfileDef") {}
  2841. IfcPositiveLengthMeasure::Out RoundingRadius;
  2842. };
  2843. // C++ wrapper for IfcSIUnit
  2844. struct IfcSIUnit : IfcNamedUnit, ObjectHelper<IfcSIUnit,2> { IfcSIUnit() : Object("IfcSIUnit") {}
  2845. Maybe< IfcSIPrefix::Out > Prefix;
  2846. IfcSIUnitName::Out Name;
  2847. };
  2848. // C++ wrapper for IfcSanitaryTerminalType
  2849. struct IfcSanitaryTerminalType : IfcFlowTerminalType, ObjectHelper<IfcSanitaryTerminalType,1> { IfcSanitaryTerminalType() : Object("IfcSanitaryTerminalType") {}
  2850. IfcSanitaryTerminalTypeEnum::Out PredefinedType;
  2851. };
  2852. // C++ wrapper for IfcScheduleTimeControl
  2853. struct IfcScheduleTimeControl : IfcControl, ObjectHelper<IfcScheduleTimeControl,18> { IfcScheduleTimeControl() : Object("IfcScheduleTimeControl") {}
  2854. Maybe< IfcDateTimeSelect::Out > ActualStart;
  2855. Maybe< IfcDateTimeSelect::Out > EarlyStart;
  2856. Maybe< IfcDateTimeSelect::Out > LateStart;
  2857. Maybe< IfcDateTimeSelect::Out > ScheduleStart;
  2858. Maybe< IfcDateTimeSelect::Out > ActualFinish;
  2859. Maybe< IfcDateTimeSelect::Out > EarlyFinish;
  2860. Maybe< IfcDateTimeSelect::Out > LateFinish;
  2861. Maybe< IfcDateTimeSelect::Out > ScheduleFinish;
  2862. Maybe< IfcTimeMeasure::Out > ScheduleDuration;
  2863. Maybe< IfcTimeMeasure::Out > ActualDuration;
  2864. Maybe< IfcTimeMeasure::Out > RemainingTime;
  2865. Maybe< IfcTimeMeasure::Out > FreeFloat;
  2866. Maybe< IfcTimeMeasure::Out > TotalFloat;
  2867. Maybe< BOOLEAN::Out > IsCritical;
  2868. Maybe< IfcDateTimeSelect::Out > StatusTime;
  2869. Maybe< IfcTimeMeasure::Out > StartFloat;
  2870. Maybe< IfcTimeMeasure::Out > FinishFloat;
  2871. Maybe< IfcPositiveRatioMeasure::Out > Completion;
  2872. };
  2873. // C++ wrapper for IfcSectionedSpine
  2874. struct IfcSectionedSpine : IfcGeometricRepresentationItem, ObjectHelper<IfcSectionedSpine,3> { IfcSectionedSpine() : Object("IfcSectionedSpine") {}
  2875. Lazy< IfcCompositeCurve > SpineCurve;
  2876. ListOf< Lazy< IfcProfileDef >, 2, 0 > CrossSections;
  2877. ListOf< Lazy< IfcAxis2Placement3D >, 2, 0 > CrossSectionPositions;
  2878. };
  2879. // C++ wrapper for IfcSensorType
  2880. struct IfcSensorType : IfcDistributionControlElementType, ObjectHelper<IfcSensorType,1> { IfcSensorType() : Object("IfcSensorType") {}
  2881. IfcSensorTypeEnum::Out PredefinedType;
  2882. };
  2883. // C++ wrapper for IfcServiceLife
  2884. struct IfcServiceLife : IfcControl, ObjectHelper<IfcServiceLife,2> { IfcServiceLife() : Object("IfcServiceLife") {}
  2885. IfcServiceLifeTypeEnum::Out ServiceLifeType;
  2886. IfcTimeMeasure::Out ServiceLifeDuration;
  2887. };
  2888. // C++ wrapper for IfcShapeModel
  2889. struct IfcShapeModel : IfcRepresentation, ObjectHelper<IfcShapeModel,0> { IfcShapeModel() : Object("IfcShapeModel") {}
  2890. };
  2891. // C++ wrapper for IfcShapeRepresentation
  2892. struct IfcShapeRepresentation : IfcShapeModel, ObjectHelper<IfcShapeRepresentation,0> { IfcShapeRepresentation() : Object("IfcShapeRepresentation") {}
  2893. };
  2894. // C++ wrapper for IfcShellBasedSurfaceModel
  2895. struct IfcShellBasedSurfaceModel : IfcGeometricRepresentationItem, ObjectHelper<IfcShellBasedSurfaceModel,1> { IfcShellBasedSurfaceModel() : Object("IfcShellBasedSurfaceModel") {}
  2896. ListOf< IfcShell, 1, 0 >::Out SbsmBoundary;
  2897. };
  2898. // C++ wrapper for IfcSite
  2899. struct IfcSite : IfcSpatialStructureElement, ObjectHelper<IfcSite,5> { IfcSite() : Object("IfcSite") {}
  2900. Maybe< IfcCompoundPlaneAngleMeasure::Out > RefLatitude;
  2901. Maybe< IfcCompoundPlaneAngleMeasure::Out > RefLongitude;
  2902. Maybe< IfcLengthMeasure::Out > RefElevation;
  2903. Maybe< IfcLabel::Out > LandTitleNumber;
  2904. Maybe< Lazy< NotImplemented > > SiteAddress;
  2905. };
  2906. // C++ wrapper for IfcSlab
  2907. struct IfcSlab : IfcBuildingElement, ObjectHelper<IfcSlab,1> { IfcSlab() : Object("IfcSlab") {}
  2908. Maybe< IfcSlabTypeEnum::Out > PredefinedType;
  2909. };
  2910. // C++ wrapper for IfcSlabType
  2911. struct IfcSlabType : IfcBuildingElementType, ObjectHelper<IfcSlabType,1> { IfcSlabType() : Object("IfcSlabType") {}
  2912. IfcSlabTypeEnum::Out PredefinedType;
  2913. };
  2914. // C++ wrapper for IfcSpace
  2915. struct IfcSpace : IfcSpatialStructureElement, ObjectHelper<IfcSpace,2> { IfcSpace() : Object("IfcSpace") {}
  2916. IfcInternalOrExternalEnum::Out InteriorOrExteriorSpace;
  2917. Maybe< IfcLengthMeasure::Out > ElevationWithFlooring;
  2918. };
  2919. // C++ wrapper for IfcSpaceHeaterType
  2920. struct IfcSpaceHeaterType : IfcEnergyConversionDeviceType, ObjectHelper<IfcSpaceHeaterType,1> { IfcSpaceHeaterType() : Object("IfcSpaceHeaterType") {}
  2921. IfcSpaceHeaterTypeEnum::Out PredefinedType;
  2922. };
  2923. // C++ wrapper for IfcSpaceProgram
  2924. struct IfcSpaceProgram : IfcControl, ObjectHelper<IfcSpaceProgram,5> { IfcSpaceProgram() : Object("IfcSpaceProgram") {}
  2925. IfcIdentifier::Out SpaceProgramIdentifier;
  2926. Maybe< IfcAreaMeasure::Out > MaxRequiredArea;
  2927. Maybe< IfcAreaMeasure::Out > MinRequiredArea;
  2928. Maybe< Lazy< IfcSpatialStructureElement > > RequestedLocation;
  2929. IfcAreaMeasure::Out StandardRequiredArea;
  2930. };
  2931. // C++ wrapper for IfcSpatialStructureElementType
  2932. struct IfcSpatialStructureElementType : IfcElementType, ObjectHelper<IfcSpatialStructureElementType,0> { IfcSpatialStructureElementType() : Object("IfcSpatialStructureElementType") {}
  2933. };
  2934. // C++ wrapper for IfcSpaceType
  2935. struct IfcSpaceType : IfcSpatialStructureElementType, ObjectHelper<IfcSpaceType,1> { IfcSpaceType() : Object("IfcSpaceType") {}
  2936. IfcSpaceTypeEnum::Out PredefinedType;
  2937. };
  2938. // C++ wrapper for IfcSphere
  2939. struct IfcSphere : IfcCsgPrimitive3D, ObjectHelper<IfcSphere,1> { IfcSphere() : Object("IfcSphere") {}
  2940. IfcPositiveLengthMeasure::Out Radius;
  2941. };
  2942. // C++ wrapper for IfcStackTerminalType
  2943. struct IfcStackTerminalType : IfcFlowTerminalType, ObjectHelper<IfcStackTerminalType,1> { IfcStackTerminalType() : Object("IfcStackTerminalType") {}
  2944. IfcStackTerminalTypeEnum::Out PredefinedType;
  2945. };
  2946. // C++ wrapper for IfcStair
  2947. struct IfcStair : IfcBuildingElement, ObjectHelper<IfcStair,1> { IfcStair() : Object("IfcStair") {}
  2948. IfcStairTypeEnum::Out ShapeType;
  2949. };
  2950. // C++ wrapper for IfcStairFlight
  2951. struct IfcStairFlight : IfcBuildingElement, ObjectHelper<IfcStairFlight,4> { IfcStairFlight() : Object("IfcStairFlight") {}
  2952. Maybe< INTEGER::Out > NumberOfRiser;
  2953. Maybe< INTEGER::Out > NumberOfTreads;
  2954. Maybe< IfcPositiveLengthMeasure::Out > RiserHeight;
  2955. Maybe< IfcPositiveLengthMeasure::Out > TreadLength;
  2956. };
  2957. // C++ wrapper for IfcStairFlightType
  2958. struct IfcStairFlightType : IfcBuildingElementType, ObjectHelper<IfcStairFlightType,1> { IfcStairFlightType() : Object("IfcStairFlightType") {}
  2959. IfcStairFlightTypeEnum::Out PredefinedType;
  2960. };
  2961. // C++ wrapper for IfcStructuralActivity
  2962. struct IfcStructuralActivity : IfcProduct, ObjectHelper<IfcStructuralActivity,2> { IfcStructuralActivity() : Object("IfcStructuralActivity") {}
  2963. Lazy< NotImplemented > AppliedLoad;
  2964. IfcGlobalOrLocalEnum::Out GlobalOrLocal;
  2965. };
  2966. // C++ wrapper for IfcStructuralAction
  2967. struct IfcStructuralAction : IfcStructuralActivity, ObjectHelper<IfcStructuralAction,2> { IfcStructuralAction() : Object("IfcStructuralAction") {}
  2968. BOOLEAN::Out DestabilizingLoad;
  2969. Maybe< Lazy< IfcStructuralReaction > > CausedBy;
  2970. };
  2971. // C++ wrapper for IfcStructuralAnalysisModel
  2972. struct IfcStructuralAnalysisModel : IfcSystem, ObjectHelper<IfcStructuralAnalysisModel,4> { IfcStructuralAnalysisModel() : Object("IfcStructuralAnalysisModel") {}
  2973. IfcAnalysisModelTypeEnum::Out PredefinedType;
  2974. Maybe< Lazy< IfcAxis2Placement3D > > OrientationOf2DPlane;
  2975. Maybe< ListOf< Lazy< IfcStructuralLoadGroup >, 1, 0 > > LoadedBy;
  2976. Maybe< ListOf< Lazy< IfcStructuralResultGroup >, 1, 0 > > HasResults;
  2977. };
  2978. // C++ wrapper for IfcStructuralItem
  2979. struct IfcStructuralItem : IfcProduct, ObjectHelper<IfcStructuralItem,0> { IfcStructuralItem() : Object("IfcStructuralItem") {}
  2980. };
  2981. // C++ wrapper for IfcStructuralConnection
  2982. struct IfcStructuralConnection : IfcStructuralItem, ObjectHelper<IfcStructuralConnection,1> { IfcStructuralConnection() : Object("IfcStructuralConnection") {}
  2983. Maybe< Lazy< NotImplemented > > AppliedCondition;
  2984. };
  2985. // C++ wrapper for IfcStructuralCurveConnection
  2986. struct IfcStructuralCurveConnection : IfcStructuralConnection, ObjectHelper<IfcStructuralCurveConnection,0> { IfcStructuralCurveConnection() : Object("IfcStructuralCurveConnection") {}
  2987. };
  2988. // C++ wrapper for IfcStructuralMember
  2989. struct IfcStructuralMember : IfcStructuralItem, ObjectHelper<IfcStructuralMember,0> { IfcStructuralMember() : Object("IfcStructuralMember") {}
  2990. };
  2991. // C++ wrapper for IfcStructuralCurveMember
  2992. struct IfcStructuralCurveMember : IfcStructuralMember, ObjectHelper<IfcStructuralCurveMember,1> { IfcStructuralCurveMember() : Object("IfcStructuralCurveMember") {}
  2993. IfcStructuralCurveTypeEnum::Out PredefinedType;
  2994. };
  2995. // C++ wrapper for IfcStructuralCurveMemberVarying
  2996. struct IfcStructuralCurveMemberVarying : IfcStructuralCurveMember, ObjectHelper<IfcStructuralCurveMemberVarying,0> { IfcStructuralCurveMemberVarying() : Object("IfcStructuralCurveMemberVarying") {}
  2997. };
  2998. // C++ wrapper for IfcStructuralLinearAction
  2999. struct IfcStructuralLinearAction : IfcStructuralAction, ObjectHelper<IfcStructuralLinearAction,1> { IfcStructuralLinearAction() : Object("IfcStructuralLinearAction") {}
  3000. IfcProjectedOrTrueLengthEnum::Out ProjectedOrTrue;
  3001. };
  3002. // C++ wrapper for IfcStructuralLinearActionVarying
  3003. struct IfcStructuralLinearActionVarying : IfcStructuralLinearAction, ObjectHelper<IfcStructuralLinearActionVarying,2> { IfcStructuralLinearActionVarying() : Object("IfcStructuralLinearActionVarying") {}
  3004. Lazy< NotImplemented > VaryingAppliedLoadLocation;
  3005. ListOf< Lazy< NotImplemented >, 1, 0 > SubsequentAppliedLoads;
  3006. };
  3007. // C++ wrapper for IfcStructuralLoadGroup
  3008. struct IfcStructuralLoadGroup : IfcGroup, ObjectHelper<IfcStructuralLoadGroup,5> { IfcStructuralLoadGroup() : Object("IfcStructuralLoadGroup") {}
  3009. IfcLoadGroupTypeEnum::Out PredefinedType;
  3010. IfcActionTypeEnum::Out ActionType;
  3011. IfcActionSourceTypeEnum::Out ActionSource;
  3012. Maybe< IfcPositiveRatioMeasure::Out > Coefficient;
  3013. Maybe< IfcLabel::Out > Purpose;
  3014. };
  3015. // C++ wrapper for IfcStructuralPlanarAction
  3016. struct IfcStructuralPlanarAction : IfcStructuralAction, ObjectHelper<IfcStructuralPlanarAction,1> { IfcStructuralPlanarAction() : Object("IfcStructuralPlanarAction") {}
  3017. IfcProjectedOrTrueLengthEnum::Out ProjectedOrTrue;
  3018. };
  3019. // C++ wrapper for IfcStructuralPlanarActionVarying
  3020. struct IfcStructuralPlanarActionVarying : IfcStructuralPlanarAction, ObjectHelper<IfcStructuralPlanarActionVarying,2> { IfcStructuralPlanarActionVarying() : Object("IfcStructuralPlanarActionVarying") {}
  3021. Lazy< NotImplemented > VaryingAppliedLoadLocation;
  3022. ListOf< Lazy< NotImplemented >, 2, 0 > SubsequentAppliedLoads;
  3023. };
  3024. // C++ wrapper for IfcStructuralPointAction
  3025. struct IfcStructuralPointAction : IfcStructuralAction, ObjectHelper<IfcStructuralPointAction,0> { IfcStructuralPointAction() : Object("IfcStructuralPointAction") {}
  3026. };
  3027. // C++ wrapper for IfcStructuralPointConnection
  3028. struct IfcStructuralPointConnection : IfcStructuralConnection, ObjectHelper<IfcStructuralPointConnection,0> { IfcStructuralPointConnection() : Object("IfcStructuralPointConnection") {}
  3029. };
  3030. // C++ wrapper for IfcStructuralReaction
  3031. struct IfcStructuralReaction : IfcStructuralActivity, ObjectHelper<IfcStructuralReaction,0> { IfcStructuralReaction() : Object("IfcStructuralReaction") {}
  3032. };
  3033. // C++ wrapper for IfcStructuralPointReaction
  3034. struct IfcStructuralPointReaction : IfcStructuralReaction, ObjectHelper<IfcStructuralPointReaction,0> { IfcStructuralPointReaction() : Object("IfcStructuralPointReaction") {}
  3035. };
  3036. // C++ wrapper for IfcStructuralResultGroup
  3037. struct IfcStructuralResultGroup : IfcGroup, ObjectHelper<IfcStructuralResultGroup,3> { IfcStructuralResultGroup() : Object("IfcStructuralResultGroup") {}
  3038. IfcAnalysisTheoryTypeEnum::Out TheoryType;
  3039. Maybe< Lazy< IfcStructuralLoadGroup > > ResultForLoadGroup;
  3040. BOOLEAN::Out IsLinear;
  3041. };
  3042. // C++ wrapper for IfcStructuralSurfaceConnection
  3043. struct IfcStructuralSurfaceConnection : IfcStructuralConnection, ObjectHelper<IfcStructuralSurfaceConnection,0> { IfcStructuralSurfaceConnection() : Object("IfcStructuralSurfaceConnection") {}
  3044. };
  3045. // C++ wrapper for IfcStructuralSurfaceMember
  3046. struct IfcStructuralSurfaceMember : IfcStructuralMember, ObjectHelper<IfcStructuralSurfaceMember,2> { IfcStructuralSurfaceMember() : Object("IfcStructuralSurfaceMember") {}
  3047. IfcStructuralSurfaceTypeEnum::Out PredefinedType;
  3048. Maybe< IfcPositiveLengthMeasure::Out > Thickness;
  3049. };
  3050. // C++ wrapper for IfcStructuralSurfaceMemberVarying
  3051. struct IfcStructuralSurfaceMemberVarying : IfcStructuralSurfaceMember, ObjectHelper<IfcStructuralSurfaceMemberVarying,2> { IfcStructuralSurfaceMemberVarying() : Object("IfcStructuralSurfaceMemberVarying") {}
  3052. ListOf< IfcPositiveLengthMeasure, 2, 0 >::Out SubsequentThickness;
  3053. Lazy< NotImplemented > VaryingThicknessLocation;
  3054. };
  3055. // C++ wrapper for IfcStructuredDimensionCallout
  3056. struct IfcStructuredDimensionCallout : IfcDraughtingCallout, ObjectHelper<IfcStructuredDimensionCallout,0> { IfcStructuredDimensionCallout() : Object("IfcStructuredDimensionCallout") {}
  3057. };
  3058. // C++ wrapper for IfcStyleModel
  3059. struct IfcStyleModel : IfcRepresentation, ObjectHelper<IfcStyleModel,0> { IfcStyleModel() : Object("IfcStyleModel") {}
  3060. };
  3061. // C++ wrapper for IfcStyledRepresentation
  3062. struct IfcStyledRepresentation : IfcStyleModel, ObjectHelper<IfcStyledRepresentation,0> { IfcStyledRepresentation() : Object("IfcStyledRepresentation") {}
  3063. };
  3064. // C++ wrapper for IfcSubContractResource
  3065. struct IfcSubContractResource : IfcConstructionResource, ObjectHelper<IfcSubContractResource,2> { IfcSubContractResource() : Object("IfcSubContractResource") {}
  3066. Maybe< IfcActorSelect::Out > SubContractor;
  3067. Maybe< IfcText::Out > JobDescription;
  3068. };
  3069. // C++ wrapper for IfcSubedge
  3070. struct IfcSubedge : IfcEdge, ObjectHelper<IfcSubedge,1> { IfcSubedge() : Object("IfcSubedge") {}
  3071. Lazy< IfcEdge > ParentEdge;
  3072. };
  3073. // C++ wrapper for IfcSurfaceCurveSweptAreaSolid
  3074. struct IfcSurfaceCurveSweptAreaSolid : IfcSweptAreaSolid, ObjectHelper<IfcSurfaceCurveSweptAreaSolid,4> { IfcSurfaceCurveSweptAreaSolid() : Object("IfcSurfaceCurveSweptAreaSolid") {}
  3075. Lazy< IfcCurve > Directrix;
  3076. IfcParameterValue::Out StartParam;
  3077. IfcParameterValue::Out EndParam;
  3078. Lazy< IfcSurface > ReferenceSurface;
  3079. };
  3080. // C++ wrapper for IfcSweptSurface
  3081. struct IfcSweptSurface : IfcSurface, ObjectHelper<IfcSweptSurface,2> { IfcSweptSurface() : Object("IfcSweptSurface") {}
  3082. Lazy< IfcProfileDef > SweptCurve;
  3083. Lazy< IfcAxis2Placement3D > Position;
  3084. };
  3085. // C++ wrapper for IfcSurfaceOfLinearExtrusion
  3086. struct IfcSurfaceOfLinearExtrusion : IfcSweptSurface, ObjectHelper<IfcSurfaceOfLinearExtrusion,2> { IfcSurfaceOfLinearExtrusion() : Object("IfcSurfaceOfLinearExtrusion") {}
  3087. Lazy< IfcDirection > ExtrudedDirection;
  3088. IfcLengthMeasure::Out Depth;
  3089. };
  3090. // C++ wrapper for IfcSurfaceOfRevolution
  3091. struct IfcSurfaceOfRevolution : IfcSweptSurface, ObjectHelper<IfcSurfaceOfRevolution,1> { IfcSurfaceOfRevolution() : Object("IfcSurfaceOfRevolution") {}
  3092. Lazy< IfcAxis1Placement > AxisPosition;
  3093. };
  3094. // C++ wrapper for IfcSurfaceStyle
  3095. struct IfcSurfaceStyle : IfcPresentationStyle, ObjectHelper<IfcSurfaceStyle,2> { IfcSurfaceStyle() : Object("IfcSurfaceStyle") {}
  3096. IfcSurfaceSide::Out Side;
  3097. ListOf< IfcSurfaceStyleElementSelect, 1, 5 >::Out Styles;
  3098. };
  3099. // C++ wrapper for IfcSurfaceStyleShading
  3100. struct IfcSurfaceStyleShading : ObjectHelper<IfcSurfaceStyleShading,1> { IfcSurfaceStyleShading() : Object("IfcSurfaceStyleShading") {}
  3101. Lazy< IfcColourRgb > SurfaceColour;
  3102. };
  3103. // C++ wrapper for IfcSurfaceStyleRendering
  3104. struct IfcSurfaceStyleRendering : IfcSurfaceStyleShading, ObjectHelper<IfcSurfaceStyleRendering,8> { IfcSurfaceStyleRendering() : Object("IfcSurfaceStyleRendering") {}
  3105. Maybe< IfcNormalisedRatioMeasure::Out > Transparency;
  3106. Maybe< IfcColourOrFactor::Out > DiffuseColour;
  3107. Maybe< IfcColourOrFactor::Out > TransmissionColour;
  3108. Maybe< IfcColourOrFactor::Out > DiffuseTransmissionColour;
  3109. Maybe< IfcColourOrFactor::Out > ReflectionColour;
  3110. Maybe< IfcColourOrFactor::Out > SpecularColour;
  3111. Maybe< IfcSpecularHighlightSelect::Out > SpecularHighlight;
  3112. IfcReflectanceMethodEnum::Out ReflectanceMethod;
  3113. };
  3114. // C++ wrapper for IfcSurfaceStyleWithTextures
  3115. struct IfcSurfaceStyleWithTextures : ObjectHelper<IfcSurfaceStyleWithTextures,1> { IfcSurfaceStyleWithTextures() : Object("IfcSurfaceStyleWithTextures") {}
  3116. ListOf< Lazy< NotImplemented >, 1, 0 > Textures;
  3117. };
  3118. // C++ wrapper for IfcSweptDiskSolid
  3119. struct IfcSweptDiskSolid : IfcSolidModel, ObjectHelper<IfcSweptDiskSolid,5> { IfcSweptDiskSolid() : Object("IfcSweptDiskSolid") {}
  3120. Lazy< IfcCurve > Directrix;
  3121. IfcPositiveLengthMeasure::Out Radius;
  3122. Maybe< IfcPositiveLengthMeasure::Out > InnerRadius;
  3123. IfcParameterValue::Out StartParam;
  3124. IfcParameterValue::Out EndParam;
  3125. };
  3126. // C++ wrapper for IfcSwitchingDeviceType
  3127. struct IfcSwitchingDeviceType : IfcFlowControllerType, ObjectHelper<IfcSwitchingDeviceType,1> { IfcSwitchingDeviceType() : Object("IfcSwitchingDeviceType") {}
  3128. IfcSwitchingDeviceTypeEnum::Out PredefinedType;
  3129. };
  3130. // C++ wrapper for IfcSystemFurnitureElementType
  3131. struct IfcSystemFurnitureElementType : IfcFurnishingElementType, ObjectHelper<IfcSystemFurnitureElementType,0> { IfcSystemFurnitureElementType() : Object("IfcSystemFurnitureElementType") {}
  3132. };
  3133. // C++ wrapper for IfcTShapeProfileDef
  3134. struct IfcTShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcTShapeProfileDef,10> { IfcTShapeProfileDef() : Object("IfcTShapeProfileDef") {}
  3135. IfcPositiveLengthMeasure::Out Depth;
  3136. IfcPositiveLengthMeasure::Out FlangeWidth;
  3137. IfcPositiveLengthMeasure::Out WebThickness;
  3138. IfcPositiveLengthMeasure::Out FlangeThickness;
  3139. Maybe< IfcPositiveLengthMeasure::Out > FilletRadius;
  3140. Maybe< IfcPositiveLengthMeasure::Out > FlangeEdgeRadius;
  3141. Maybe< IfcPositiveLengthMeasure::Out > WebEdgeRadius;
  3142. Maybe< IfcPlaneAngleMeasure::Out > WebSlope;
  3143. Maybe< IfcPlaneAngleMeasure::Out > FlangeSlope;
  3144. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInY;
  3145. };
  3146. // C++ wrapper for IfcTankType
  3147. struct IfcTankType : IfcFlowStorageDeviceType, ObjectHelper<IfcTankType,1> { IfcTankType() : Object("IfcTankType") {}
  3148. IfcTankTypeEnum::Out PredefinedType;
  3149. };
  3150. // C++ wrapper for IfcTendon
  3151. struct IfcTendon : IfcReinforcingElement, ObjectHelper<IfcTendon,8> { IfcTendon() : Object("IfcTendon") {}
  3152. IfcTendonTypeEnum::Out PredefinedType;
  3153. IfcPositiveLengthMeasure::Out NominalDiameter;
  3154. IfcAreaMeasure::Out CrossSectionArea;
  3155. Maybe< IfcForceMeasure::Out > TensionForce;
  3156. Maybe< IfcPressureMeasure::Out > PreStress;
  3157. Maybe< IfcNormalisedRatioMeasure::Out > FrictionCoefficient;
  3158. Maybe< IfcPositiveLengthMeasure::Out > AnchorageSlip;
  3159. Maybe< IfcPositiveLengthMeasure::Out > MinCurvatureRadius;
  3160. };
  3161. // C++ wrapper for IfcTendonAnchor
  3162. struct IfcTendonAnchor : IfcReinforcingElement, ObjectHelper<IfcTendonAnchor,0> { IfcTendonAnchor() : Object("IfcTendonAnchor") {}
  3163. };
  3164. // C++ wrapper for IfcTextLiteral
  3165. struct IfcTextLiteral : IfcGeometricRepresentationItem, ObjectHelper<IfcTextLiteral,3> { IfcTextLiteral() : Object("IfcTextLiteral") {}
  3166. IfcPresentableText::Out Literal;
  3167. IfcAxis2Placement::Out Placement;
  3168. IfcTextPath::Out Path;
  3169. };
  3170. // C++ wrapper for IfcTextLiteralWithExtent
  3171. struct IfcTextLiteralWithExtent : IfcTextLiteral, ObjectHelper<IfcTextLiteralWithExtent,2> { IfcTextLiteralWithExtent() : Object("IfcTextLiteralWithExtent") {}
  3172. Lazy< IfcPlanarExtent > Extent;
  3173. IfcBoxAlignment::Out BoxAlignment;
  3174. };
  3175. // C++ wrapper for IfcTimeSeriesSchedule
  3176. struct IfcTimeSeriesSchedule : IfcControl, ObjectHelper<IfcTimeSeriesSchedule,3> { IfcTimeSeriesSchedule() : Object("IfcTimeSeriesSchedule") {}
  3177. Maybe< ListOf< IfcDateTimeSelect, 1, 0 >::Out > ApplicableDates;
  3178. IfcTimeSeriesScheduleTypeEnum::Out TimeSeriesScheduleType;
  3179. Lazy< NotImplemented > TimeSeries;
  3180. };
  3181. // C++ wrapper for IfcTopologyRepresentation
  3182. struct IfcTopologyRepresentation : IfcShapeModel, ObjectHelper<IfcTopologyRepresentation,0> { IfcTopologyRepresentation() : Object("IfcTopologyRepresentation") {}
  3183. };
  3184. // C++ wrapper for IfcTransformerType
  3185. struct IfcTransformerType : IfcEnergyConversionDeviceType, ObjectHelper<IfcTransformerType,1> { IfcTransformerType() : Object("IfcTransformerType") {}
  3186. IfcTransformerTypeEnum::Out PredefinedType;
  3187. };
  3188. // C++ wrapper for IfcTransportElement
  3189. struct IfcTransportElement : IfcElement, ObjectHelper<IfcTransportElement,3> { IfcTransportElement() : Object("IfcTransportElement") {}
  3190. Maybe< IfcTransportElementTypeEnum::Out > OperationType;
  3191. Maybe< IfcMassMeasure::Out > CapacityByWeight;
  3192. Maybe< IfcCountMeasure::Out > CapacityByNumber;
  3193. };
  3194. // C++ wrapper for IfcTransportElementType
  3195. struct IfcTransportElementType : IfcElementType, ObjectHelper<IfcTransportElementType,1> { IfcTransportElementType() : Object("IfcTransportElementType") {}
  3196. IfcTransportElementTypeEnum::Out PredefinedType;
  3197. };
  3198. // C++ wrapper for IfcTrapeziumProfileDef
  3199. struct IfcTrapeziumProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcTrapeziumProfileDef,4> { IfcTrapeziumProfileDef() : Object("IfcTrapeziumProfileDef") {}
  3200. IfcPositiveLengthMeasure::Out BottomXDim;
  3201. IfcPositiveLengthMeasure::Out TopXDim;
  3202. IfcPositiveLengthMeasure::Out YDim;
  3203. IfcLengthMeasure::Out TopXOffset;
  3204. };
  3205. // C++ wrapper for IfcTrimmedCurve
  3206. struct IfcTrimmedCurve : IfcBoundedCurve, ObjectHelper<IfcTrimmedCurve,5> { IfcTrimmedCurve() : Object("IfcTrimmedCurve") {}
  3207. Lazy< IfcCurve > BasisCurve;
  3208. ListOf< IfcTrimmingSelect, 1, 2 >::Out Trim1;
  3209. ListOf< IfcTrimmingSelect, 1, 2 >::Out Trim2;
  3210. BOOLEAN::Out SenseAgreement;
  3211. IfcTrimmingPreference::Out MasterRepresentation;
  3212. };
  3213. // C++ wrapper for IfcTubeBundleType
  3214. struct IfcTubeBundleType : IfcEnergyConversionDeviceType, ObjectHelper<IfcTubeBundleType,1> { IfcTubeBundleType() : Object("IfcTubeBundleType") {}
  3215. IfcTubeBundleTypeEnum::Out PredefinedType;
  3216. };
  3217. // C++ wrapper for IfcTwoDirectionRepeatFactor
  3218. struct IfcTwoDirectionRepeatFactor : IfcOneDirectionRepeatFactor, ObjectHelper<IfcTwoDirectionRepeatFactor,1> { IfcTwoDirectionRepeatFactor() : Object("IfcTwoDirectionRepeatFactor") {}
  3219. Lazy< IfcVector > SecondRepeatFactor;
  3220. };
  3221. // C++ wrapper for IfcUShapeProfileDef
  3222. struct IfcUShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcUShapeProfileDef,8> { IfcUShapeProfileDef() : Object("IfcUShapeProfileDef") {}
  3223. IfcPositiveLengthMeasure::Out Depth;
  3224. IfcPositiveLengthMeasure::Out FlangeWidth;
  3225. IfcPositiveLengthMeasure::Out WebThickness;
  3226. IfcPositiveLengthMeasure::Out FlangeThickness;
  3227. Maybe< IfcPositiveLengthMeasure::Out > FilletRadius;
  3228. Maybe< IfcPositiveLengthMeasure::Out > EdgeRadius;
  3229. Maybe< IfcPlaneAngleMeasure::Out > FlangeSlope;
  3230. Maybe< IfcPositiveLengthMeasure::Out > CentreOfGravityInX;
  3231. };
  3232. // C++ wrapper for IfcUnitAssignment
  3233. struct IfcUnitAssignment : ObjectHelper<IfcUnitAssignment,1> { IfcUnitAssignment() : Object("IfcUnitAssignment") {}
  3234. ListOf< IfcUnit, 1, 0 >::Out Units;
  3235. };
  3236. // C++ wrapper for IfcUnitaryEquipmentType
  3237. struct IfcUnitaryEquipmentType : IfcEnergyConversionDeviceType, ObjectHelper<IfcUnitaryEquipmentType,1> { IfcUnitaryEquipmentType() : Object("IfcUnitaryEquipmentType") {}
  3238. IfcUnitaryEquipmentTypeEnum::Out PredefinedType;
  3239. };
  3240. // C++ wrapper for IfcValveType
  3241. struct IfcValveType : IfcFlowControllerType, ObjectHelper<IfcValveType,1> { IfcValveType() : Object("IfcValveType") {}
  3242. IfcValveTypeEnum::Out PredefinedType;
  3243. };
  3244. // C++ wrapper for IfcVector
  3245. struct IfcVector : IfcGeometricRepresentationItem, ObjectHelper<IfcVector,2> { IfcVector() : Object("IfcVector") {}
  3246. Lazy< IfcDirection > Orientation;
  3247. IfcLengthMeasure::Out Magnitude;
  3248. };
  3249. // C++ wrapper for IfcVertex
  3250. struct IfcVertex : IfcTopologicalRepresentationItem, ObjectHelper<IfcVertex,0> { IfcVertex() : Object("IfcVertex") {}
  3251. };
  3252. // C++ wrapper for IfcVertexLoop
  3253. struct IfcVertexLoop : IfcLoop, ObjectHelper<IfcVertexLoop,1> { IfcVertexLoop() : Object("IfcVertexLoop") {}
  3254. Lazy< IfcVertex > LoopVertex;
  3255. };
  3256. // C++ wrapper for IfcVertexPoint
  3257. struct IfcVertexPoint : IfcVertex, ObjectHelper<IfcVertexPoint,1> { IfcVertexPoint() : Object("IfcVertexPoint") {}
  3258. Lazy< IfcPoint > VertexGeometry;
  3259. };
  3260. // C++ wrapper for IfcVibrationIsolatorType
  3261. struct IfcVibrationIsolatorType : IfcDiscreteAccessoryType, ObjectHelper<IfcVibrationIsolatorType,1> { IfcVibrationIsolatorType() : Object("IfcVibrationIsolatorType") {}
  3262. IfcVibrationIsolatorTypeEnum::Out PredefinedType;
  3263. };
  3264. // C++ wrapper for IfcVirtualElement
  3265. struct IfcVirtualElement : IfcElement, ObjectHelper<IfcVirtualElement,0> { IfcVirtualElement() : Object("IfcVirtualElement") {}
  3266. };
  3267. // C++ wrapper for IfcWall
  3268. struct IfcWall : IfcBuildingElement, ObjectHelper<IfcWall,0> { IfcWall() : Object("IfcWall") {}
  3269. };
  3270. // C++ wrapper for IfcWallStandardCase
  3271. struct IfcWallStandardCase : IfcWall, ObjectHelper<IfcWallStandardCase,0> { IfcWallStandardCase() : Object("IfcWallStandardCase") {}
  3272. };
  3273. // C++ wrapper for IfcWallType
  3274. struct IfcWallType : IfcBuildingElementType, ObjectHelper<IfcWallType,1> { IfcWallType() : Object("IfcWallType") {}
  3275. IfcWallTypeEnum::Out PredefinedType;
  3276. };
  3277. // C++ wrapper for IfcWasteTerminalType
  3278. struct IfcWasteTerminalType : IfcFlowTerminalType, ObjectHelper<IfcWasteTerminalType,1> { IfcWasteTerminalType() : Object("IfcWasteTerminalType") {}
  3279. IfcWasteTerminalTypeEnum::Out PredefinedType;
  3280. };
  3281. // C++ wrapper for IfcWindow
  3282. struct IfcWindow : IfcBuildingElement, ObjectHelper<IfcWindow,2> { IfcWindow() : Object("IfcWindow") {}
  3283. Maybe< IfcPositiveLengthMeasure::Out > OverallHeight;
  3284. Maybe< IfcPositiveLengthMeasure::Out > OverallWidth;
  3285. };
  3286. // C++ wrapper for IfcWindowStyle
  3287. struct IfcWindowStyle : IfcTypeProduct, ObjectHelper<IfcWindowStyle,4> { IfcWindowStyle() : Object("IfcWindowStyle") {}
  3288. IfcWindowStyleConstructionEnum::Out ConstructionType;
  3289. IfcWindowStyleOperationEnum::Out OperationType;
  3290. BOOLEAN::Out ParameterTakesPrecedence;
  3291. BOOLEAN::Out Sizeable;
  3292. };
  3293. // C++ wrapper for IfcWorkControl
  3294. struct IfcWorkControl : IfcControl, ObjectHelper<IfcWorkControl,10> { IfcWorkControl() : Object("IfcWorkControl") {}
  3295. IfcIdentifier::Out Identifier;
  3296. IfcDateTimeSelect::Out CreationDate;
  3297. Maybe< ListOf< Lazy< NotImplemented >, 1, 0 > > Creators;
  3298. Maybe< IfcLabel::Out > Purpose;
  3299. Maybe< IfcTimeMeasure::Out > Duration;
  3300. Maybe< IfcTimeMeasure::Out > TotalFloat;
  3301. IfcDateTimeSelect::Out StartTime;
  3302. Maybe< IfcDateTimeSelect::Out > FinishTime;
  3303. Maybe< IfcWorkControlTypeEnum::Out > WorkControlType;
  3304. Maybe< IfcLabel::Out > UserDefinedControlType;
  3305. };
  3306. // C++ wrapper for IfcWorkPlan
  3307. struct IfcWorkPlan : IfcWorkControl, ObjectHelper<IfcWorkPlan,0> { IfcWorkPlan() : Object("IfcWorkPlan") {}
  3308. };
  3309. // C++ wrapper for IfcWorkSchedule
  3310. struct IfcWorkSchedule : IfcWorkControl, ObjectHelper<IfcWorkSchedule,0> { IfcWorkSchedule() : Object("IfcWorkSchedule") {}
  3311. };
  3312. // C++ wrapper for IfcZShapeProfileDef
  3313. struct IfcZShapeProfileDef : IfcParameterizedProfileDef, ObjectHelper<IfcZShapeProfileDef,6> { IfcZShapeProfileDef() : Object("IfcZShapeProfileDef") {}
  3314. IfcPositiveLengthMeasure::Out Depth;
  3315. IfcPositiveLengthMeasure::Out FlangeWidth;
  3316. IfcPositiveLengthMeasure::Out WebThickness;
  3317. IfcPositiveLengthMeasure::Out FlangeThickness;
  3318. Maybe< IfcPositiveLengthMeasure::Out > FilletRadius;
  3319. Maybe< IfcPositiveLengthMeasure::Out > EdgeRadius;
  3320. };
  3321. // C++ wrapper for IfcZone
  3322. struct IfcZone : IfcGroup, ObjectHelper<IfcZone,0> { IfcZone() : Object("IfcZone") {}
  3323. };
  3324. void GetSchema(EXPRESS::ConversionSchema& out);
  3325. } //! IFC
  3326. namespace STEP {
  3327. // ******************************************************************************
  3328. // Converter stubs
  3329. // ******************************************************************************
  3330. #define DECL_CONV_STUB(type) template <> size_t GenericFill<IFC::type>(const STEP::DB& db, const EXPRESS::LIST& params, IFC::type* in)
  3331. DECL_CONV_STUB(IfcRepresentationItem);
  3332. DECL_CONV_STUB(IfcGeometricRepresentationItem);
  3333. DECL_CONV_STUB(IfcCurve);
  3334. DECL_CONV_STUB(IfcBoundedCurve);
  3335. DECL_CONV_STUB(IfcCompositeCurve);
  3336. DECL_CONV_STUB(Ifc2DCompositeCurve);
  3337. DECL_CONV_STUB(IfcRoot);
  3338. DECL_CONV_STUB(IfcObjectDefinition);
  3339. DECL_CONV_STUB(IfcObject);
  3340. DECL_CONV_STUB(IfcControl);
  3341. DECL_CONV_STUB(IfcActionRequest);
  3342. DECL_CONV_STUB(IfcActor);
  3343. DECL_CONV_STUB(IfcTypeObject);
  3344. DECL_CONV_STUB(IfcTypeProduct);
  3345. DECL_CONV_STUB(IfcElementType);
  3346. DECL_CONV_STUB(IfcDistributionElementType);
  3347. DECL_CONV_STUB(IfcDistributionControlElementType);
  3348. DECL_CONV_STUB(IfcActuatorType);
  3349. DECL_CONV_STUB(IfcDistributionFlowElementType);
  3350. DECL_CONV_STUB(IfcFlowControllerType);
  3351. DECL_CONV_STUB(IfcAirTerminalBoxType);
  3352. DECL_CONV_STUB(IfcFlowTerminalType);
  3353. DECL_CONV_STUB(IfcAirTerminalType);
  3354. DECL_CONV_STUB(IfcEnergyConversionDeviceType);
  3355. DECL_CONV_STUB(IfcAirToAirHeatRecoveryType);
  3356. DECL_CONV_STUB(IfcAlarmType);
  3357. DECL_CONV_STUB(IfcDraughtingCallout);
  3358. DECL_CONV_STUB(IfcDimensionCurveDirectedCallout);
  3359. DECL_CONV_STUB(IfcAngularDimension);
  3360. DECL_CONV_STUB(IfcProduct);
  3361. DECL_CONV_STUB(IfcAnnotation);
  3362. DECL_CONV_STUB(IfcStyledItem);
  3363. DECL_CONV_STUB(IfcAnnotationOccurrence);
  3364. DECL_CONV_STUB(IfcAnnotationCurveOccurrence);
  3365. DECL_CONV_STUB(IfcAnnotationFillArea);
  3366. DECL_CONV_STUB(IfcAnnotationFillAreaOccurrence);
  3367. DECL_CONV_STUB(IfcAnnotationSurface);
  3368. DECL_CONV_STUB(IfcAnnotationSurfaceOccurrence);
  3369. DECL_CONV_STUB(IfcAnnotationSymbolOccurrence);
  3370. DECL_CONV_STUB(IfcAnnotationTextOccurrence);
  3371. DECL_CONV_STUB(IfcProfileDef);
  3372. DECL_CONV_STUB(IfcArbitraryClosedProfileDef);
  3373. DECL_CONV_STUB(IfcArbitraryOpenProfileDef);
  3374. DECL_CONV_STUB(IfcArbitraryProfileDefWithVoids);
  3375. DECL_CONV_STUB(IfcGroup);
  3376. DECL_CONV_STUB(IfcAsset);
  3377. DECL_CONV_STUB(IfcParameterizedProfileDef);
  3378. DECL_CONV_STUB(IfcIShapeProfileDef);
  3379. DECL_CONV_STUB(IfcAsymmetricIShapeProfileDef);
  3380. DECL_CONV_STUB(IfcPlacement);
  3381. DECL_CONV_STUB(IfcAxis1Placement);
  3382. DECL_CONV_STUB(IfcAxis2Placement2D);
  3383. DECL_CONV_STUB(IfcAxis2Placement3D);
  3384. DECL_CONV_STUB(IfcBSplineCurve);
  3385. DECL_CONV_STUB(IfcElement);
  3386. DECL_CONV_STUB(IfcBuildingElement);
  3387. DECL_CONV_STUB(IfcBeam);
  3388. DECL_CONV_STUB(IfcBuildingElementType);
  3389. DECL_CONV_STUB(IfcBeamType);
  3390. DECL_CONV_STUB(IfcBezierCurve);
  3391. DECL_CONV_STUB(IfcCsgPrimitive3D);
  3392. DECL_CONV_STUB(IfcBlock);
  3393. DECL_CONV_STUB(IfcBoilerType);
  3394. DECL_CONV_STUB(IfcBooleanResult);
  3395. DECL_CONV_STUB(IfcBooleanClippingResult);
  3396. DECL_CONV_STUB(IfcSurface);
  3397. DECL_CONV_STUB(IfcBoundedSurface);
  3398. DECL_CONV_STUB(IfcBoundingBox);
  3399. DECL_CONV_STUB(IfcHalfSpaceSolid);
  3400. DECL_CONV_STUB(IfcBoxedHalfSpace);
  3401. DECL_CONV_STUB(IfcSpatialStructureElement);
  3402. DECL_CONV_STUB(IfcBuilding);
  3403. DECL_CONV_STUB(IfcBuildingElementComponent);
  3404. DECL_CONV_STUB(IfcBuildingElementPart);
  3405. DECL_CONV_STUB(IfcBuildingElementProxy);
  3406. DECL_CONV_STUB(IfcBuildingElementProxyType);
  3407. DECL_CONV_STUB(IfcBuildingStorey);
  3408. DECL_CONV_STUB(IfcCShapeProfileDef);
  3409. DECL_CONV_STUB(IfcFlowFittingType);
  3410. DECL_CONV_STUB(IfcCableCarrierFittingType);
  3411. DECL_CONV_STUB(IfcFlowSegmentType);
  3412. DECL_CONV_STUB(IfcCableCarrierSegmentType);
  3413. DECL_CONV_STUB(IfcCableSegmentType);
  3414. DECL_CONV_STUB(IfcPoint);
  3415. DECL_CONV_STUB(IfcCartesianPoint);
  3416. DECL_CONV_STUB(IfcCartesianTransformationOperator);
  3417. DECL_CONV_STUB(IfcCartesianTransformationOperator2D);
  3418. DECL_CONV_STUB(IfcCartesianTransformationOperator2DnonUniform);
  3419. DECL_CONV_STUB(IfcCartesianTransformationOperator3D);
  3420. DECL_CONV_STUB(IfcCartesianTransformationOperator3DnonUniform);
  3421. DECL_CONV_STUB(IfcCenterLineProfileDef);
  3422. DECL_CONV_STUB(IfcFeatureElement);
  3423. DECL_CONV_STUB(IfcFeatureElementSubtraction);
  3424. DECL_CONV_STUB(IfcEdgeFeature);
  3425. DECL_CONV_STUB(IfcChamferEdgeFeature);
  3426. DECL_CONV_STUB(IfcChillerType);
  3427. DECL_CONV_STUB(IfcConic);
  3428. DECL_CONV_STUB(IfcCircle);
  3429. DECL_CONV_STUB(IfcCircleProfileDef);
  3430. DECL_CONV_STUB(IfcCircleHollowProfileDef);
  3431. DECL_CONV_STUB(IfcTopologicalRepresentationItem);
  3432. DECL_CONV_STUB(IfcConnectedFaceSet);
  3433. DECL_CONV_STUB(IfcClosedShell);
  3434. DECL_CONV_STUB(IfcCoilType);
  3435. DECL_CONV_STUB(IfcColourSpecification);
  3436. DECL_CONV_STUB(IfcColourRgb);
  3437. DECL_CONV_STUB(IfcColumn);
  3438. DECL_CONV_STUB(IfcColumnType);
  3439. DECL_CONV_STUB(IfcProperty);
  3440. DECL_CONV_STUB(IfcComplexProperty);
  3441. DECL_CONV_STUB(IfcCompositeCurveSegment);
  3442. DECL_CONV_STUB(IfcCompositeProfileDef);
  3443. DECL_CONV_STUB(IfcFlowMovingDeviceType);
  3444. DECL_CONV_STUB(IfcCompressorType);
  3445. DECL_CONV_STUB(IfcCondenserType);
  3446. DECL_CONV_STUB(IfcCondition);
  3447. DECL_CONV_STUB(IfcConditionCriterion);
  3448. DECL_CONV_STUB(IfcResource);
  3449. DECL_CONV_STUB(IfcConstructionResource);
  3450. DECL_CONV_STUB(IfcConstructionEquipmentResource);
  3451. DECL_CONV_STUB(IfcConstructionMaterialResource);
  3452. DECL_CONV_STUB(IfcConstructionProductResource);
  3453. DECL_CONV_STUB(IfcNamedUnit);
  3454. DECL_CONV_STUB(IfcContextDependentUnit);
  3455. DECL_CONV_STUB(IfcControllerType);
  3456. DECL_CONV_STUB(IfcConversionBasedUnit);
  3457. DECL_CONV_STUB(IfcCooledBeamType);
  3458. DECL_CONV_STUB(IfcCoolingTowerType);
  3459. DECL_CONV_STUB(IfcCostItem);
  3460. DECL_CONV_STUB(IfcCostSchedule);
  3461. DECL_CONV_STUB(IfcCovering);
  3462. DECL_CONV_STUB(IfcCoveringType);
  3463. DECL_CONV_STUB(IfcCraneRailAShapeProfileDef);
  3464. DECL_CONV_STUB(IfcCraneRailFShapeProfileDef);
  3465. DECL_CONV_STUB(IfcCrewResource);
  3466. DECL_CONV_STUB(IfcSolidModel);
  3467. DECL_CONV_STUB(IfcCsgSolid);
  3468. DECL_CONV_STUB(IfcCurtainWall);
  3469. DECL_CONV_STUB(IfcCurtainWallType);
  3470. DECL_CONV_STUB(IfcCurveBoundedPlane);
  3471. DECL_CONV_STUB(IfcPresentationStyle);
  3472. DECL_CONV_STUB(IfcDamperType);
  3473. DECL_CONV_STUB(IfcDefinedSymbol);
  3474. DECL_CONV_STUB(IfcDerivedProfileDef);
  3475. DECL_CONV_STUB(IfcDiameterDimension);
  3476. DECL_CONV_STUB(IfcDimensionCurve);
  3477. DECL_CONV_STUB(IfcTerminatorSymbol);
  3478. DECL_CONV_STUB(IfcDimensionCurveTerminator);
  3479. DECL_CONV_STUB(IfcDirection);
  3480. DECL_CONV_STUB(IfcElementComponent);
  3481. DECL_CONV_STUB(IfcDiscreteAccessory);
  3482. DECL_CONV_STUB(IfcElementComponentType);
  3483. DECL_CONV_STUB(IfcDiscreteAccessoryType);
  3484. DECL_CONV_STUB(IfcDistributionElement);
  3485. DECL_CONV_STUB(IfcDistributionFlowElement);
  3486. DECL_CONV_STUB(IfcDistributionChamberElement);
  3487. DECL_CONV_STUB(IfcDistributionChamberElementType);
  3488. DECL_CONV_STUB(IfcDistributionControlElement);
  3489. DECL_CONV_STUB(IfcPort);
  3490. DECL_CONV_STUB(IfcDistributionPort);
  3491. DECL_CONV_STUB(IfcDoor);
  3492. DECL_CONV_STUB(IfcPropertyDefinition);
  3493. DECL_CONV_STUB(IfcPropertySetDefinition);
  3494. DECL_CONV_STUB(IfcDoorStyle);
  3495. DECL_CONV_STUB(IfcDuctFittingType);
  3496. DECL_CONV_STUB(IfcDuctSegmentType);
  3497. DECL_CONV_STUB(IfcFlowTreatmentDeviceType);
  3498. DECL_CONV_STUB(IfcDuctSilencerType);
  3499. DECL_CONV_STUB(IfcEdge);
  3500. DECL_CONV_STUB(IfcEdgeCurve);
  3501. DECL_CONV_STUB(IfcLoop);
  3502. DECL_CONV_STUB(IfcEdgeLoop);
  3503. DECL_CONV_STUB(IfcElectricApplianceType);
  3504. DECL_CONV_STUB(IfcFlowController);
  3505. DECL_CONV_STUB(IfcElectricDistributionPoint);
  3506. DECL_CONV_STUB(IfcFlowStorageDeviceType);
  3507. DECL_CONV_STUB(IfcElectricFlowStorageDeviceType);
  3508. DECL_CONV_STUB(IfcElectricGeneratorType);
  3509. DECL_CONV_STUB(IfcElectricHeaterType);
  3510. DECL_CONV_STUB(IfcElectricMotorType);
  3511. DECL_CONV_STUB(IfcElectricTimeControlType);
  3512. DECL_CONV_STUB(IfcSystem);
  3513. DECL_CONV_STUB(IfcElectricalCircuit);
  3514. DECL_CONV_STUB(IfcElectricalElement);
  3515. DECL_CONV_STUB(IfcElementAssembly);
  3516. DECL_CONV_STUB(IfcElementQuantity);
  3517. DECL_CONV_STUB(IfcElementarySurface);
  3518. DECL_CONV_STUB(IfcEllipse);
  3519. DECL_CONV_STUB(IfcEllipseProfileDef);
  3520. DECL_CONV_STUB(IfcEnergyConversionDevice);
  3521. DECL_CONV_STUB(IfcEquipmentElement);
  3522. DECL_CONV_STUB(IfcEquipmentStandard);
  3523. DECL_CONV_STUB(IfcEvaporativeCoolerType);
  3524. DECL_CONV_STUB(IfcEvaporatorType);
  3525. DECL_CONV_STUB(IfcSweptAreaSolid);
  3526. DECL_CONV_STUB(IfcExtrudedAreaSolid);
  3527. DECL_CONV_STUB(IfcFace);
  3528. DECL_CONV_STUB(IfcFaceBasedSurfaceModel);
  3529. DECL_CONV_STUB(IfcFaceBound);
  3530. DECL_CONV_STUB(IfcFaceOuterBound);
  3531. DECL_CONV_STUB(IfcFaceSurface);
  3532. DECL_CONV_STUB(IfcManifoldSolidBrep);
  3533. DECL_CONV_STUB(IfcFacetedBrep);
  3534. DECL_CONV_STUB(IfcFacetedBrepWithVoids);
  3535. DECL_CONV_STUB(IfcFanType);
  3536. DECL_CONV_STUB(IfcFastener);
  3537. DECL_CONV_STUB(IfcFastenerType);
  3538. DECL_CONV_STUB(IfcFeatureElementAddition);
  3539. DECL_CONV_STUB(IfcFillAreaStyleHatching);
  3540. DECL_CONV_STUB(IfcFillAreaStyleTileSymbolWithStyle);
  3541. DECL_CONV_STUB(IfcFillAreaStyleTiles);
  3542. DECL_CONV_STUB(IfcFilterType);
  3543. DECL_CONV_STUB(IfcFireSuppressionTerminalType);
  3544. DECL_CONV_STUB(IfcFlowFitting);
  3545. DECL_CONV_STUB(IfcFlowInstrumentType);
  3546. DECL_CONV_STUB(IfcFlowMeterType);
  3547. DECL_CONV_STUB(IfcFlowMovingDevice);
  3548. DECL_CONV_STUB(IfcFlowSegment);
  3549. DECL_CONV_STUB(IfcFlowStorageDevice);
  3550. DECL_CONV_STUB(IfcFlowTerminal);
  3551. DECL_CONV_STUB(IfcFlowTreatmentDevice);
  3552. DECL_CONV_STUB(IfcFooting);
  3553. DECL_CONV_STUB(IfcFurnishingElement);
  3554. DECL_CONV_STUB(IfcFurnishingElementType);
  3555. DECL_CONV_STUB(IfcFurnitureStandard);
  3556. DECL_CONV_STUB(IfcFurnitureType);
  3557. DECL_CONV_STUB(IfcGasTerminalType);
  3558. DECL_CONV_STUB(IfcGeometricSet);
  3559. DECL_CONV_STUB(IfcGeometricCurveSet);
  3560. DECL_CONV_STUB(IfcRepresentationContext);
  3561. DECL_CONV_STUB(IfcGeometricRepresentationContext);
  3562. DECL_CONV_STUB(IfcGeometricRepresentationSubContext);
  3563. DECL_CONV_STUB(IfcGrid);
  3564. DECL_CONV_STUB(IfcObjectPlacement);
  3565. DECL_CONV_STUB(IfcGridPlacement);
  3566. DECL_CONV_STUB(IfcHeatExchangerType);
  3567. DECL_CONV_STUB(IfcHumidifierType);
  3568. DECL_CONV_STUB(IfcInventory);
  3569. DECL_CONV_STUB(IfcJunctionBoxType);
  3570. DECL_CONV_STUB(IfcLShapeProfileDef);
  3571. DECL_CONV_STUB(IfcLaborResource);
  3572. DECL_CONV_STUB(IfcLampType);
  3573. DECL_CONV_STUB(IfcLightFixtureType);
  3574. DECL_CONV_STUB(IfcLightSource);
  3575. DECL_CONV_STUB(IfcLightSourceAmbient);
  3576. DECL_CONV_STUB(IfcLightSourceDirectional);
  3577. DECL_CONV_STUB(IfcLightSourceGoniometric);
  3578. DECL_CONV_STUB(IfcLightSourcePositional);
  3579. DECL_CONV_STUB(IfcLightSourceSpot);
  3580. DECL_CONV_STUB(IfcLine);
  3581. DECL_CONV_STUB(IfcLinearDimension);
  3582. DECL_CONV_STUB(IfcLocalPlacement);
  3583. DECL_CONV_STUB(IfcMappedItem);
  3584. DECL_CONV_STUB(IfcProductRepresentation);
  3585. DECL_CONV_STUB(IfcMaterialDefinitionRepresentation);
  3586. DECL_CONV_STUB(IfcMeasureWithUnit);
  3587. DECL_CONV_STUB(IfcMechanicalFastener);
  3588. DECL_CONV_STUB(IfcMechanicalFastenerType);
  3589. DECL_CONV_STUB(IfcMember);
  3590. DECL_CONV_STUB(IfcMemberType);
  3591. DECL_CONV_STUB(IfcMotorConnectionType);
  3592. DECL_CONV_STUB(IfcProcess);
  3593. DECL_CONV_STUB(IfcTask);
  3594. DECL_CONV_STUB(IfcMove);
  3595. DECL_CONV_STUB(IfcOccupant);
  3596. DECL_CONV_STUB(IfcOffsetCurve2D);
  3597. DECL_CONV_STUB(IfcOffsetCurve3D);
  3598. DECL_CONV_STUB(IfcOneDirectionRepeatFactor);
  3599. DECL_CONV_STUB(IfcOpenShell);
  3600. DECL_CONV_STUB(IfcOpeningElement);
  3601. DECL_CONV_STUB(IfcOrderAction);
  3602. DECL_CONV_STUB(IfcOrientedEdge);
  3603. DECL_CONV_STUB(IfcOutletType);
  3604. DECL_CONV_STUB(IfcPath);
  3605. DECL_CONV_STUB(IfcPerformanceHistory);
  3606. DECL_CONV_STUB(IfcPermit);
  3607. DECL_CONV_STUB(IfcPile);
  3608. DECL_CONV_STUB(IfcPipeFittingType);
  3609. DECL_CONV_STUB(IfcPipeSegmentType);
  3610. DECL_CONV_STUB(IfcPlanarExtent);
  3611. DECL_CONV_STUB(IfcPlanarBox);
  3612. DECL_CONV_STUB(IfcPlane);
  3613. DECL_CONV_STUB(IfcPlate);
  3614. DECL_CONV_STUB(IfcPlateType);
  3615. DECL_CONV_STUB(IfcPointOnCurve);
  3616. DECL_CONV_STUB(IfcPointOnSurface);
  3617. DECL_CONV_STUB(IfcPolyLoop);
  3618. DECL_CONV_STUB(IfcPolygonalBoundedHalfSpace);
  3619. DECL_CONV_STUB(IfcPolyline);
  3620. DECL_CONV_STUB(IfcPresentationStyleAssignment);
  3621. DECL_CONV_STUB(IfcProcedure);
  3622. DECL_CONV_STUB(IfcProductDefinitionShape);
  3623. DECL_CONV_STUB(IfcProject);
  3624. DECL_CONV_STUB(IfcProjectOrder);
  3625. DECL_CONV_STUB(IfcProjectOrderRecord);
  3626. DECL_CONV_STUB(IfcProjectionCurve);
  3627. DECL_CONV_STUB(IfcProjectionElement);
  3628. DECL_CONV_STUB(IfcSimpleProperty);
  3629. DECL_CONV_STUB(IfcPropertyBoundedValue);
  3630. DECL_CONV_STUB(IfcPropertyEnumeratedValue);
  3631. DECL_CONV_STUB(IfcPropertyListValue);
  3632. DECL_CONV_STUB(IfcPropertyReferenceValue);
  3633. DECL_CONV_STUB(IfcPropertySet);
  3634. DECL_CONV_STUB(IfcPropertySingleValue);
  3635. DECL_CONV_STUB(IfcPropertyTableValue);
  3636. DECL_CONV_STUB(IfcProtectiveDeviceType);
  3637. DECL_CONV_STUB(IfcProxy);
  3638. DECL_CONV_STUB(IfcPumpType);
  3639. DECL_CONV_STUB(IfcRadiusDimension);
  3640. DECL_CONV_STUB(IfcRailing);
  3641. DECL_CONV_STUB(IfcRailingType);
  3642. DECL_CONV_STUB(IfcRamp);
  3643. DECL_CONV_STUB(IfcRampFlight);
  3644. DECL_CONV_STUB(IfcRampFlightType);
  3645. DECL_CONV_STUB(IfcRationalBezierCurve);
  3646. DECL_CONV_STUB(IfcRectangleProfileDef);
  3647. DECL_CONV_STUB(IfcRectangleHollowProfileDef);
  3648. DECL_CONV_STUB(IfcRectangularPyramid);
  3649. DECL_CONV_STUB(IfcRectangularTrimmedSurface);
  3650. DECL_CONV_STUB(IfcReinforcingElement);
  3651. DECL_CONV_STUB(IfcReinforcingBar);
  3652. DECL_CONV_STUB(IfcReinforcingMesh);
  3653. DECL_CONV_STUB(IfcRelationship);
  3654. DECL_CONV_STUB(IfcRelDecomposes);
  3655. DECL_CONV_STUB(IfcRelAggregates);
  3656. DECL_CONV_STUB(IfcRelConnects);
  3657. DECL_CONV_STUB(IfcRelContainedInSpatialStructure);
  3658. DECL_CONV_STUB(IfcRelDefines);
  3659. DECL_CONV_STUB(IfcRelDefinesByProperties);
  3660. DECL_CONV_STUB(IfcRelFillsElement);
  3661. DECL_CONV_STUB(IfcRelOverridesProperties);
  3662. DECL_CONV_STUB(IfcRelVoidsElement);
  3663. DECL_CONV_STUB(IfcRepresentation);
  3664. DECL_CONV_STUB(IfcRepresentationMap);
  3665. DECL_CONV_STUB(IfcRevolvedAreaSolid);
  3666. DECL_CONV_STUB(IfcRightCircularCone);
  3667. DECL_CONV_STUB(IfcRightCircularCylinder);
  3668. DECL_CONV_STUB(IfcRoof);
  3669. DECL_CONV_STUB(IfcRoundedEdgeFeature);
  3670. DECL_CONV_STUB(IfcRoundedRectangleProfileDef);
  3671. DECL_CONV_STUB(IfcSIUnit);
  3672. DECL_CONV_STUB(IfcSanitaryTerminalType);
  3673. DECL_CONV_STUB(IfcScheduleTimeControl);
  3674. DECL_CONV_STUB(IfcSectionedSpine);
  3675. DECL_CONV_STUB(IfcSensorType);
  3676. DECL_CONV_STUB(IfcServiceLife);
  3677. DECL_CONV_STUB(IfcShapeModel);
  3678. DECL_CONV_STUB(IfcShapeRepresentation);
  3679. DECL_CONV_STUB(IfcShellBasedSurfaceModel);
  3680. DECL_CONV_STUB(IfcSite);
  3681. DECL_CONV_STUB(IfcSlab);
  3682. DECL_CONV_STUB(IfcSlabType);
  3683. DECL_CONV_STUB(IfcSpace);
  3684. DECL_CONV_STUB(IfcSpaceHeaterType);
  3685. DECL_CONV_STUB(IfcSpaceProgram);
  3686. DECL_CONV_STUB(IfcSpatialStructureElementType);
  3687. DECL_CONV_STUB(IfcSpaceType);
  3688. DECL_CONV_STUB(IfcSphere);
  3689. DECL_CONV_STUB(IfcStackTerminalType);
  3690. DECL_CONV_STUB(IfcStair);
  3691. DECL_CONV_STUB(IfcStairFlight);
  3692. DECL_CONV_STUB(IfcStairFlightType);
  3693. DECL_CONV_STUB(IfcStructuralActivity);
  3694. DECL_CONV_STUB(IfcStructuralAction);
  3695. DECL_CONV_STUB(IfcStructuralAnalysisModel);
  3696. DECL_CONV_STUB(IfcStructuralItem);
  3697. DECL_CONV_STUB(IfcStructuralConnection);
  3698. DECL_CONV_STUB(IfcStructuralCurveConnection);
  3699. DECL_CONV_STUB(IfcStructuralMember);
  3700. DECL_CONV_STUB(IfcStructuralCurveMember);
  3701. DECL_CONV_STUB(IfcStructuralCurveMemberVarying);
  3702. DECL_CONV_STUB(IfcStructuralLinearAction);
  3703. DECL_CONV_STUB(IfcStructuralLinearActionVarying);
  3704. DECL_CONV_STUB(IfcStructuralLoadGroup);
  3705. DECL_CONV_STUB(IfcStructuralPlanarAction);
  3706. DECL_CONV_STUB(IfcStructuralPlanarActionVarying);
  3707. DECL_CONV_STUB(IfcStructuralPointAction);
  3708. DECL_CONV_STUB(IfcStructuralPointConnection);
  3709. DECL_CONV_STUB(IfcStructuralReaction);
  3710. DECL_CONV_STUB(IfcStructuralPointReaction);
  3711. DECL_CONV_STUB(IfcStructuralResultGroup);
  3712. DECL_CONV_STUB(IfcStructuralSurfaceConnection);
  3713. DECL_CONV_STUB(IfcStructuralSurfaceMember);
  3714. DECL_CONV_STUB(IfcStructuralSurfaceMemberVarying);
  3715. DECL_CONV_STUB(IfcStructuredDimensionCallout);
  3716. DECL_CONV_STUB(IfcStyleModel);
  3717. DECL_CONV_STUB(IfcStyledRepresentation);
  3718. DECL_CONV_STUB(IfcSubContractResource);
  3719. DECL_CONV_STUB(IfcSubedge);
  3720. DECL_CONV_STUB(IfcSurfaceCurveSweptAreaSolid);
  3721. DECL_CONV_STUB(IfcSweptSurface);
  3722. DECL_CONV_STUB(IfcSurfaceOfLinearExtrusion);
  3723. DECL_CONV_STUB(IfcSurfaceOfRevolution);
  3724. DECL_CONV_STUB(IfcSurfaceStyle);
  3725. DECL_CONV_STUB(IfcSurfaceStyleShading);
  3726. DECL_CONV_STUB(IfcSurfaceStyleRendering);
  3727. DECL_CONV_STUB(IfcSurfaceStyleWithTextures);
  3728. DECL_CONV_STUB(IfcSweptDiskSolid);
  3729. DECL_CONV_STUB(IfcSwitchingDeviceType);
  3730. DECL_CONV_STUB(IfcSystemFurnitureElementType);
  3731. DECL_CONV_STUB(IfcTShapeProfileDef);
  3732. DECL_CONV_STUB(IfcTankType);
  3733. DECL_CONV_STUB(IfcTendon);
  3734. DECL_CONV_STUB(IfcTendonAnchor);
  3735. DECL_CONV_STUB(IfcTextLiteral);
  3736. DECL_CONV_STUB(IfcTextLiteralWithExtent);
  3737. DECL_CONV_STUB(IfcTimeSeriesSchedule);
  3738. DECL_CONV_STUB(IfcTopologyRepresentation);
  3739. DECL_CONV_STUB(IfcTransformerType);
  3740. DECL_CONV_STUB(IfcTransportElement);
  3741. DECL_CONV_STUB(IfcTransportElementType);
  3742. DECL_CONV_STUB(IfcTrapeziumProfileDef);
  3743. DECL_CONV_STUB(IfcTrimmedCurve);
  3744. DECL_CONV_STUB(IfcTubeBundleType);
  3745. DECL_CONV_STUB(IfcTwoDirectionRepeatFactor);
  3746. DECL_CONV_STUB(IfcUShapeProfileDef);
  3747. DECL_CONV_STUB(IfcUnitAssignment);
  3748. DECL_CONV_STUB(IfcUnitaryEquipmentType);
  3749. DECL_CONV_STUB(IfcValveType);
  3750. DECL_CONV_STUB(IfcVector);
  3751. DECL_CONV_STUB(IfcVertex);
  3752. DECL_CONV_STUB(IfcVertexLoop);
  3753. DECL_CONV_STUB(IfcVertexPoint);
  3754. DECL_CONV_STUB(IfcVibrationIsolatorType);
  3755. DECL_CONV_STUB(IfcVirtualElement);
  3756. DECL_CONV_STUB(IfcWall);
  3757. DECL_CONV_STUB(IfcWallStandardCase);
  3758. DECL_CONV_STUB(IfcWallType);
  3759. DECL_CONV_STUB(IfcWasteTerminalType);
  3760. DECL_CONV_STUB(IfcWindow);
  3761. DECL_CONV_STUB(IfcWindowStyle);
  3762. DECL_CONV_STUB(IfcWorkControl);
  3763. DECL_CONV_STUB(IfcWorkPlan);
  3764. DECL_CONV_STUB(IfcWorkSchedule);
  3765. DECL_CONV_STUB(IfcZShapeProfileDef);
  3766. DECL_CONV_STUB(IfcZone);
  3767. #undef DECL_CONV_STUB
  3768. } //! STEP
  3769. } //! Assimp
  3770. #endif // INCLUDED_IFC_READER_GEN_H