123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034 |
- /*
- Open Asset Import Library (ASSIMP)
- ----------------------------------------------------------------------
- Copyright (c) 2006-2010, ASSIMP Development Team
- All rights reserved.
- Redistribution and use of this software in source and binary forms,
- with or without modification, are permitted provided that the
- following conditions are met:
- * Redistributions of source code must retain the above
- copyright notice, this list of conditions and the
- following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the
- following disclaimer in the documentation and/or other
- materials provided with the distribution.
- * Neither the name of the ASSIMP team, nor the names of its
- contributors may be used to endorse or promote products
- derived from this software without specific prior
- written permission of the ASSIMP Development Team.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- ----------------------------------------------------------------------
- */
- /** MACHINE-GENERATED by scripts/ICFImporter/CppGenerator.py */
- #ifndef ASSIMP_BUILD_NO_IFC_IMPORTER
- #include "IFCReaderGen.h"
- namespace Assimp {
- using namespace IFC;
- namespace {
- typedef EXPRESS::ConversionSchema::SchemaEntry SchemaEntry;
- const SchemaEntry schema_raw[] = {
- SchemaEntry("ifcabsorbeddosemeasure",NULL )
- , SchemaEntry("ifcaccelerationmeasure",NULL )
- , SchemaEntry("ifcamountofsubstancemeasure",NULL )
- , SchemaEntry("ifcangularvelocitymeasure",NULL )
- , SchemaEntry("ifcareameasure",NULL )
- , SchemaEntry("ifcboolean",NULL )
- , SchemaEntry("ifcboxalignment",NULL )
- , SchemaEntry("ifccomplexnumber",NULL )
- , SchemaEntry("ifccompoundplaneanglemeasure",NULL )
- , SchemaEntry("ifccontextdependentmeasure",NULL )
- , SchemaEntry("ifccountmeasure",NULL )
- , SchemaEntry("ifccurvaturemeasure",NULL )
- , SchemaEntry("ifcdayinmonthnumber",NULL )
- , SchemaEntry("ifcdaylightsavinghour",NULL )
- , SchemaEntry("ifcdescriptivemeasure",NULL )
- , SchemaEntry("ifcdimensioncount",NULL )
- , SchemaEntry("ifcdoseequivalentmeasure",NULL )
- , SchemaEntry("ifcdynamicviscositymeasure",NULL )
- , SchemaEntry("ifcelectriccapacitancemeasure",NULL )
- , SchemaEntry("ifcelectricchargemeasure",NULL )
- , SchemaEntry("ifcelectricconductancemeasure",NULL )
- , SchemaEntry("ifcelectriccurrentmeasure",NULL )
- , SchemaEntry("ifcelectricresistancemeasure",NULL )
- , SchemaEntry("ifcelectricvoltagemeasure",NULL )
- , SchemaEntry("ifcenergymeasure",NULL )
- , SchemaEntry("ifcfontstyle",NULL )
- , SchemaEntry("ifcfontvariant",NULL )
- , SchemaEntry("ifcfontweight",NULL )
- , SchemaEntry("ifcforcemeasure",NULL )
- , SchemaEntry("ifcfrequencymeasure",NULL )
- , SchemaEntry("ifcgloballyuniqueid",NULL )
- , SchemaEntry("ifcheatfluxdensitymeasure",NULL )
- , SchemaEntry("ifcheatingvaluemeasure",NULL )
- , SchemaEntry("ifchourinday",NULL )
- , SchemaEntry("ifcidentifier",NULL )
- , SchemaEntry("ifcilluminancemeasure",NULL )
- , SchemaEntry("ifcinductancemeasure",NULL )
- , SchemaEntry("ifcinteger",NULL )
- , SchemaEntry("ifcintegercountratemeasure",NULL )
- , SchemaEntry("ifcionconcentrationmeasure",NULL )
- , SchemaEntry("ifcisothermalmoisturecapacitymeasure",NULL )
- , SchemaEntry("ifckinematicviscositymeasure",NULL )
- , SchemaEntry("ifclabel",NULL )
- , SchemaEntry("ifclengthmeasure",NULL )
- , SchemaEntry("ifclinearforcemeasure",NULL )
- , SchemaEntry("ifclinearmomentmeasure",NULL )
- , SchemaEntry("ifclinearstiffnessmeasure",NULL )
- , SchemaEntry("ifclinearvelocitymeasure",NULL )
- , SchemaEntry("ifclogical",NULL )
- , SchemaEntry("ifcluminousfluxmeasure",NULL )
- , SchemaEntry("ifcluminousintensitydistributionmeasure",NULL )
- , SchemaEntry("ifcluminousintensitymeasure",NULL )
- , SchemaEntry("ifcmagneticfluxdensitymeasure",NULL )
- , SchemaEntry("ifcmagneticfluxmeasure",NULL )
- , SchemaEntry("ifcmassdensitymeasure",NULL )
- , SchemaEntry("ifcmassflowratemeasure",NULL )
- , SchemaEntry("ifcmassmeasure",NULL )
- , SchemaEntry("ifcmassperlengthmeasure",NULL )
- , SchemaEntry("ifcminuteinhour",NULL )
- , SchemaEntry("ifcmodulusofelasticitymeasure",NULL )
- , SchemaEntry("ifcmodulusoflinearsubgradereactionmeasure",NULL )
- , SchemaEntry("ifcmodulusofrotationalsubgradereactionmeasure",NULL )
- , SchemaEntry("ifcmodulusofsubgradereactionmeasure",NULL )
- , SchemaEntry("ifcmoisturediffusivitymeasure",NULL )
- , SchemaEntry("ifcmolecularweightmeasure",NULL )
- , SchemaEntry("ifcmomentofinertiameasure",NULL )
- , SchemaEntry("ifcmonetarymeasure",NULL )
- , SchemaEntry("ifcmonthinyearnumber",NULL )
- , SchemaEntry("ifcnormalisedratiomeasure",NULL )
- , SchemaEntry("ifcnumericmeasure",NULL )
- , SchemaEntry("ifcphmeasure",NULL )
- , SchemaEntry("ifcparametervalue",NULL )
- , SchemaEntry("ifcplanarforcemeasure",NULL )
- , SchemaEntry("ifcplaneanglemeasure",NULL )
- , SchemaEntry("ifcpositivelengthmeasure",NULL )
- , SchemaEntry("ifcpositiveplaneanglemeasure",NULL )
- , SchemaEntry("ifcpositiveratiomeasure",NULL )
- , SchemaEntry("ifcpowermeasure",NULL )
- , SchemaEntry("ifcpresentabletext",NULL )
- , SchemaEntry("ifcpressuremeasure",NULL )
- , SchemaEntry("ifcradioactivitymeasure",NULL )
- , SchemaEntry("ifcratiomeasure",NULL )
- , SchemaEntry("ifcreal",NULL )
- , SchemaEntry("ifcrotationalfrequencymeasure",NULL )
- , SchemaEntry("ifcrotationalmassmeasure",NULL )
- , SchemaEntry("ifcrotationalstiffnessmeasure",NULL )
- , SchemaEntry("ifcsecondinminute",NULL )
- , SchemaEntry("ifcsectionmodulusmeasure",NULL )
- , SchemaEntry("ifcsectionalareaintegralmeasure",NULL )
- , SchemaEntry("ifcshearmodulusmeasure",NULL )
- , SchemaEntry("ifcsolidanglemeasure",NULL )
- , SchemaEntry("ifcsoundpowermeasure",NULL )
- , SchemaEntry("ifcsoundpressuremeasure",NULL )
- , SchemaEntry("ifcspecificheatcapacitymeasure",NULL )
- , SchemaEntry("ifcspecularexponent",NULL )
- , SchemaEntry("ifcspecularroughness",NULL )
- , SchemaEntry("ifctemperaturegradientmeasure",NULL )
- , SchemaEntry("ifctext",NULL )
- , SchemaEntry("ifctextalignment",NULL )
- , SchemaEntry("ifctextdecoration",NULL )
- , SchemaEntry("ifctextfontname",NULL )
- , SchemaEntry("ifctexttransformation",NULL )
- , SchemaEntry("ifcthermaladmittancemeasure",NULL )
- , SchemaEntry("ifcthermalconductivitymeasure",NULL )
- , SchemaEntry("ifcthermalexpansioncoefficientmeasure",NULL )
- , SchemaEntry("ifcthermalresistancemeasure",NULL )
- , SchemaEntry("ifcthermaltransmittancemeasure",NULL )
- , SchemaEntry("ifcthermodynamictemperaturemeasure",NULL )
- , SchemaEntry("ifctimemeasure",NULL )
- , SchemaEntry("ifctimestamp",NULL )
- , SchemaEntry("ifctorquemeasure",NULL )
- , SchemaEntry("ifcvaporpermeabilitymeasure",NULL )
- , SchemaEntry("ifcvolumemeasure",NULL )
- , SchemaEntry("ifcvolumetricflowratemeasure",NULL )
- , SchemaEntry("ifcwarpingconstantmeasure",NULL )
- , SchemaEntry("ifcwarpingmomentmeasure",NULL )
- , SchemaEntry("ifcyearnumber",NULL )
- , SchemaEntry("ifcactionsourcetypeenum",NULL )
- , SchemaEntry("ifcactiontypeenum",NULL )
- , SchemaEntry("ifcactuatortypeenum",NULL )
- , SchemaEntry("ifcaddresstypeenum",NULL )
- , SchemaEntry("ifcaheadorbehind",NULL )
- , SchemaEntry("ifcairterminalboxtypeenum",NULL )
- , SchemaEntry("ifcairterminaltypeenum",NULL )
- , SchemaEntry("ifcairtoairheatrecoverytypeenum",NULL )
- , SchemaEntry("ifcalarmtypeenum",NULL )
- , SchemaEntry("ifcanalysismodeltypeenum",NULL )
- , SchemaEntry("ifcanalysistheorytypeenum",NULL )
- , SchemaEntry("ifcarithmeticoperatorenum",NULL )
- , SchemaEntry("ifcassemblyplaceenum",NULL )
- , SchemaEntry("ifcbsplinecurveform",NULL )
- , SchemaEntry("ifcbeamtypeenum",NULL )
- , SchemaEntry("ifcbenchmarkenum",NULL )
- , SchemaEntry("ifcboilertypeenum",NULL )
- , SchemaEntry("ifcbooleanoperator",NULL )
- , SchemaEntry("ifcbuildingelementproxytypeenum",NULL )
- , SchemaEntry("ifccablecarrierfittingtypeenum",NULL )
- , SchemaEntry("ifccablecarriersegmenttypeenum",NULL )
- , SchemaEntry("ifccablesegmenttypeenum",NULL )
- , SchemaEntry("ifcchangeactionenum",NULL )
- , SchemaEntry("ifcchillertypeenum",NULL )
- , SchemaEntry("ifccoiltypeenum",NULL )
- , SchemaEntry("ifccolumntypeenum",NULL )
- , SchemaEntry("ifccompressortypeenum",NULL )
- , SchemaEntry("ifccondensertypeenum",NULL )
- , SchemaEntry("ifcconnectiontypeenum",NULL )
- , SchemaEntry("ifcconstraintenum",NULL )
- , SchemaEntry("ifccontrollertypeenum",NULL )
- , SchemaEntry("ifccooledbeamtypeenum",NULL )
- , SchemaEntry("ifccoolingtowertypeenum",NULL )
- , SchemaEntry("ifccostscheduletypeenum",NULL )
- , SchemaEntry("ifccoveringtypeenum",NULL )
- , SchemaEntry("ifccurrencyenum",NULL )
- , SchemaEntry("ifccurtainwalltypeenum",NULL )
- , SchemaEntry("ifcdampertypeenum",NULL )
- , SchemaEntry("ifcdataoriginenum",NULL )
- , SchemaEntry("ifcderivedunitenum",NULL )
- , SchemaEntry("ifcdimensionextentusage",NULL )
- , SchemaEntry("ifcdirectionsenseenum",NULL )
- , SchemaEntry("ifcdistributionchamberelementtypeenum",NULL )
- , SchemaEntry("ifcdocumentconfidentialityenum",NULL )
- , SchemaEntry("ifcdocumentstatusenum",NULL )
- , SchemaEntry("ifcdoorpaneloperationenum",NULL )
- , SchemaEntry("ifcdoorpanelpositionenum",NULL )
- , SchemaEntry("ifcdoorstyleconstructionenum",NULL )
- , SchemaEntry("ifcdoorstyleoperationenum",NULL )
- , SchemaEntry("ifcductfittingtypeenum",NULL )
- , SchemaEntry("ifcductsegmenttypeenum",NULL )
- , SchemaEntry("ifcductsilencertypeenum",NULL )
- , SchemaEntry("ifcelectricappliancetypeenum",NULL )
- , SchemaEntry("ifcelectriccurrentenum",NULL )
- , SchemaEntry("ifcelectricdistributionpointfunctionenum",NULL )
- , SchemaEntry("ifcelectricflowstoragedevicetypeenum",NULL )
- , SchemaEntry("ifcelectricgeneratortypeenum",NULL )
- , SchemaEntry("ifcelectricheatertypeenum",NULL )
- , SchemaEntry("ifcelectricmotortypeenum",NULL )
- , SchemaEntry("ifcelectrictimecontroltypeenum",NULL )
- , SchemaEntry("ifcelementassemblytypeenum",NULL )
- , SchemaEntry("ifcelementcompositionenum",NULL )
- , SchemaEntry("ifcenergysequenceenum",NULL )
- , SchemaEntry("ifcenvironmentalimpactcategoryenum",NULL )
- , SchemaEntry("ifcevaporativecoolertypeenum",NULL )
- , SchemaEntry("ifcevaporatortypeenum",NULL )
- , SchemaEntry("ifcfantypeenum",NULL )
- , SchemaEntry("ifcfiltertypeenum",NULL )
- , SchemaEntry("ifcfiresuppressionterminaltypeenum",NULL )
- , SchemaEntry("ifcflowdirectionenum",NULL )
- , SchemaEntry("ifcflowinstrumenttypeenum",NULL )
- , SchemaEntry("ifcflowmetertypeenum",NULL )
- , SchemaEntry("ifcfootingtypeenum",NULL )
- , SchemaEntry("ifcgasterminaltypeenum",NULL )
- , SchemaEntry("ifcgeometricprojectionenum",NULL )
- , SchemaEntry("ifcglobalorlocalenum",NULL )
- , SchemaEntry("ifcheatexchangertypeenum",NULL )
- , SchemaEntry("ifchumidifiertypeenum",NULL )
- , SchemaEntry("ifcinternalorexternalenum",NULL )
- , SchemaEntry("ifcinventorytypeenum",NULL )
- , SchemaEntry("ifcjunctionboxtypeenum",NULL )
- , SchemaEntry("ifclamptypeenum",NULL )
- , SchemaEntry("ifclayersetdirectionenum",NULL )
- , SchemaEntry("ifclightdistributioncurveenum",NULL )
- , SchemaEntry("ifclightemissionsourceenum",NULL )
- , SchemaEntry("ifclightfixturetypeenum",NULL )
- , SchemaEntry("ifcloadgrouptypeenum",NULL )
- , SchemaEntry("ifclogicaloperatorenum",NULL )
- , SchemaEntry("ifcmembertypeenum",NULL )
- , SchemaEntry("ifcmotorconnectiontypeenum",NULL )
- , SchemaEntry("ifcnullstyle",NULL )
- , SchemaEntry("ifcobjecttypeenum",NULL )
- , SchemaEntry("ifcobjectiveenum",NULL )
- , SchemaEntry("ifcoccupanttypeenum",NULL )
- , SchemaEntry("ifcoutlettypeenum",NULL )
- , SchemaEntry("ifcpermeablecoveringoperationenum",NULL )
- , SchemaEntry("ifcphysicalorvirtualenum",NULL )
- , SchemaEntry("ifcpileconstructionenum",NULL )
- , SchemaEntry("ifcpiletypeenum",NULL )
- , SchemaEntry("ifcpipefittingtypeenum",NULL )
- , SchemaEntry("ifcpipesegmenttypeenum",NULL )
- , SchemaEntry("ifcplatetypeenum",NULL )
- , SchemaEntry("ifcproceduretypeenum",NULL )
- , SchemaEntry("ifcprofiletypeenum",NULL )
- , SchemaEntry("ifcprojectorderrecordtypeenum",NULL )
- , SchemaEntry("ifcprojectordertypeenum",NULL )
- , SchemaEntry("ifcprojectedortruelengthenum",NULL )
- , SchemaEntry("ifcpropertysourceenum",NULL )
- , SchemaEntry("ifcprotectivedevicetypeenum",NULL )
- , SchemaEntry("ifcpumptypeenum",NULL )
- , SchemaEntry("ifcrailingtypeenum",NULL )
- , SchemaEntry("ifcrampflighttypeenum",NULL )
- , SchemaEntry("ifcramptypeenum",NULL )
- , SchemaEntry("ifcreflectancemethodenum",NULL )
- , SchemaEntry("ifcreinforcingbarroleenum",NULL )
- , SchemaEntry("ifcreinforcingbarsurfaceenum",NULL )
- , SchemaEntry("ifcresourceconsumptionenum",NULL )
- , SchemaEntry("ifcribplatedirectionenum",NULL )
- , SchemaEntry("ifcroleenum",NULL )
- , SchemaEntry("ifcrooftypeenum",NULL )
- , SchemaEntry("ifcsiprefix",NULL )
- , SchemaEntry("ifcsiunitname",NULL )
- , SchemaEntry("ifcsanitaryterminaltypeenum",NULL )
- , SchemaEntry("ifcsectiontypeenum",NULL )
- , SchemaEntry("ifcsensortypeenum",NULL )
- , SchemaEntry("ifcsequenceenum",NULL )
- , SchemaEntry("ifcservicelifefactortypeenum",NULL )
- , SchemaEntry("ifcservicelifetypeenum",NULL )
- , SchemaEntry("ifcslabtypeenum",NULL )
- , SchemaEntry("ifcsoundscaleenum",NULL )
- , SchemaEntry("ifcspaceheatertypeenum",NULL )
- , SchemaEntry("ifcspacetypeenum",NULL )
- , SchemaEntry("ifcstackterminaltypeenum",NULL )
- , SchemaEntry("ifcstairflighttypeenum",NULL )
- , SchemaEntry("ifcstairtypeenum",NULL )
- , SchemaEntry("ifcstateenum",NULL )
- , SchemaEntry("ifcstructuralcurvetypeenum",NULL )
- , SchemaEntry("ifcstructuralsurfacetypeenum",NULL )
- , SchemaEntry("ifcsurfaceside",NULL )
- , SchemaEntry("ifcsurfacetextureenum",NULL )
- , SchemaEntry("ifcswitchingdevicetypeenum",NULL )
- , SchemaEntry("ifctanktypeenum",NULL )
- , SchemaEntry("ifctendontypeenum",NULL )
- , SchemaEntry("ifctextpath",NULL )
- , SchemaEntry("ifcthermalloadsourceenum",NULL )
- , SchemaEntry("ifcthermalloadtypeenum",NULL )
- , SchemaEntry("ifctimeseriesdatatypeenum",NULL )
- , SchemaEntry("ifctimeseriesscheduletypeenum",NULL )
- , SchemaEntry("ifctransformertypeenum",NULL )
- , SchemaEntry("ifctransitioncode",NULL )
- , SchemaEntry("ifctransportelementtypeenum",NULL )
- , SchemaEntry("ifctrimmingpreference",NULL )
- , SchemaEntry("ifctubebundletypeenum",NULL )
- , SchemaEntry("ifcunitenum",NULL )
- , SchemaEntry("ifcunitaryequipmenttypeenum",NULL )
- , SchemaEntry("ifcvalvetypeenum",NULL )
- , SchemaEntry("ifcvibrationisolatortypeenum",NULL )
- , SchemaEntry("ifcwalltypeenum",NULL )
- , SchemaEntry("ifcwasteterminaltypeenum",NULL )
- , SchemaEntry("ifcwindowpaneloperationenum",NULL )
- , SchemaEntry("ifcwindowpanelpositionenum",NULL )
- , SchemaEntry("ifcwindowstyleconstructionenum",NULL )
- , SchemaEntry("ifcwindowstyleoperationenum",NULL )
- , SchemaEntry("ifcworkcontroltypeenum",NULL )
- , SchemaEntry("ifcactorselect",NULL )
- , SchemaEntry("ifcappliedvalueselect",NULL )
- , SchemaEntry("ifcaxis2placement",NULL )
- , SchemaEntry("ifcbooleanoperand",NULL )
- , SchemaEntry("ifccharacterstyleselect",NULL )
- , SchemaEntry("ifcclassificationnotationselect",NULL )
- , SchemaEntry("ifccolour",NULL )
- , SchemaEntry("ifccolourorfactor",NULL )
- , SchemaEntry("ifcconditioncriterionselect",NULL )
- , SchemaEntry("ifccsgselect",NULL )
- , SchemaEntry("ifccurvefontorscaledcurvefontselect",NULL )
- , SchemaEntry("ifccurveoredgecurve",NULL )
- , SchemaEntry("ifccurvestylefontselect",NULL )
- , SchemaEntry("ifcdatetimeselect",NULL )
- , SchemaEntry("ifcdefinedsymbolselect",NULL )
- , SchemaEntry("ifcderivedmeasurevalue",NULL )
- , SchemaEntry("ifcdocumentselect",NULL )
- , SchemaEntry("ifcdraughtingcalloutelement",NULL )
- , SchemaEntry("ifcfillareastyletileshapeselect",NULL )
- , SchemaEntry("ifcfillstyleselect",NULL )
- , SchemaEntry("ifcgeometricsetselect",NULL )
- , SchemaEntry("ifchatchlinedistanceselect",NULL )
- , SchemaEntry("ifclayereditem",NULL )
- , SchemaEntry("ifclibraryselect",NULL )
- , SchemaEntry("ifclightdistributiondatasourceselect",NULL )
- , SchemaEntry("ifcmaterialselect",NULL )
- , SchemaEntry("ifcmeasurevalue",NULL )
- , SchemaEntry("ifcmetricvalueselect",NULL )
- , SchemaEntry("ifcobjectreferenceselect",NULL )
- , SchemaEntry("ifcorientationselect",NULL )
- , SchemaEntry("ifcpointorvertexpoint",NULL )
- , SchemaEntry("ifcpresentationstyleselect",NULL )
- , SchemaEntry("ifcshell",NULL )
- , SchemaEntry("ifcsimplevalue",NULL )
- , SchemaEntry("ifcsizeselect",NULL )
- , SchemaEntry("ifcspecularhighlightselect",NULL )
- , SchemaEntry("ifcstructuralactivityassignmentselect",NULL )
- , SchemaEntry("ifcsurfaceorfacesurface",NULL )
- , SchemaEntry("ifcsurfacestyleelementselect",NULL )
- , SchemaEntry("ifcsymbolstyleselect",NULL )
- , SchemaEntry("ifctextfontselect",NULL )
- , SchemaEntry("ifctextstyleselect",NULL )
- , SchemaEntry("ifctrimmingselect",NULL )
- , SchemaEntry("ifcunit",NULL )
- , SchemaEntry("ifcvalue",NULL )
- , SchemaEntry("ifcvectorordirection",NULL )
- , SchemaEntry("ifcrepresentationitem",&STEP::ObjectHelper<IfcRepresentationItem,0>::Construct )
- , SchemaEntry("ifcgeometricrepresentationitem",&STEP::ObjectHelper<IfcGeometricRepresentationItem,0>::Construct )
- , SchemaEntry("ifccurve",&STEP::ObjectHelper<IfcCurve,0>::Construct )
- , SchemaEntry("ifcboundedcurve",&STEP::ObjectHelper<IfcBoundedCurve,0>::Construct )
- , SchemaEntry("ifccompositecurve",&STEP::ObjectHelper<IfcCompositeCurve,2>::Construct )
- , SchemaEntry("ifc2dcompositecurve",&STEP::ObjectHelper<Ifc2DCompositeCurve,0>::Construct )
- , SchemaEntry("ifcroot",&STEP::ObjectHelper<IfcRoot,4>::Construct )
- , SchemaEntry("ifcobjectdefinition",&STEP::ObjectHelper<IfcObjectDefinition,0>::Construct )
- , SchemaEntry("ifcobject",&STEP::ObjectHelper<IfcObject,1>::Construct )
- , SchemaEntry("ifccontrol",&STEP::ObjectHelper<IfcControl,0>::Construct )
- , SchemaEntry("ifcactionrequest",&STEP::ObjectHelper<IfcActionRequest,1>::Construct )
- , SchemaEntry("ifcactor",&STEP::ObjectHelper<IfcActor,1>::Construct )
- , SchemaEntry("ifcactorrole",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctypeobject",&STEP::ObjectHelper<IfcTypeObject,2>::Construct )
- , SchemaEntry("ifctypeproduct",&STEP::ObjectHelper<IfcTypeProduct,2>::Construct )
- , SchemaEntry("ifcelementtype",&STEP::ObjectHelper<IfcElementType,1>::Construct )
- , SchemaEntry("ifcdistributionelementtype",&STEP::ObjectHelper<IfcDistributionElementType,0>::Construct )
- , SchemaEntry("ifcdistributioncontrolelementtype",&STEP::ObjectHelper<IfcDistributionControlElementType,0>::Construct )
- , SchemaEntry("ifcactuatortype",&STEP::ObjectHelper<IfcActuatorType,1>::Construct )
- , SchemaEntry("ifcaddress",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdistributionflowelementtype",&STEP::ObjectHelper<IfcDistributionFlowElementType,0>::Construct )
- , SchemaEntry("ifcflowcontrollertype",&STEP::ObjectHelper<IfcFlowControllerType,0>::Construct )
- , SchemaEntry("ifcairterminalboxtype",&STEP::ObjectHelper<IfcAirTerminalBoxType,1>::Construct )
- , SchemaEntry("ifcflowterminaltype",&STEP::ObjectHelper<IfcFlowTerminalType,0>::Construct )
- , SchemaEntry("ifcairterminaltype",&STEP::ObjectHelper<IfcAirTerminalType,1>::Construct )
- , SchemaEntry("ifcenergyconversiondevicetype",&STEP::ObjectHelper<IfcEnergyConversionDeviceType,0>::Construct )
- , SchemaEntry("ifcairtoairheatrecoverytype",&STEP::ObjectHelper<IfcAirToAirHeatRecoveryType,1>::Construct )
- , SchemaEntry("ifcalarmtype",&STEP::ObjectHelper<IfcAlarmType,1>::Construct )
- , SchemaEntry("ifcdraughtingcallout",&STEP::ObjectHelper<IfcDraughtingCallout,1>::Construct )
- , SchemaEntry("ifcdimensioncurvedirectedcallout",&STEP::ObjectHelper<IfcDimensionCurveDirectedCallout,0>::Construct )
- , SchemaEntry("ifcangulardimension",&STEP::ObjectHelper<IfcAngularDimension,0>::Construct )
- , SchemaEntry("ifcproduct",&STEP::ObjectHelper<IfcProduct,2>::Construct )
- , SchemaEntry("ifcannotation",&STEP::ObjectHelper<IfcAnnotation,0>::Construct )
- , SchemaEntry("ifcstyleditem",&STEP::ObjectHelper<IfcStyledItem,3>::Construct )
- , SchemaEntry("ifcannotationoccurrence",&STEP::ObjectHelper<IfcAnnotationOccurrence,0>::Construct )
- , SchemaEntry("ifcannotationcurveoccurrence",&STEP::ObjectHelper<IfcAnnotationCurveOccurrence,0>::Construct )
- , SchemaEntry("ifcannotationfillarea",&STEP::ObjectHelper<IfcAnnotationFillArea,2>::Construct )
- , SchemaEntry("ifcannotationfillareaoccurrence",&STEP::ObjectHelper<IfcAnnotationFillAreaOccurrence,2>::Construct )
- , SchemaEntry("ifcannotationsurface",&STEP::ObjectHelper<IfcAnnotationSurface,2>::Construct )
- , SchemaEntry("ifcannotationsurfaceoccurrence",&STEP::ObjectHelper<IfcAnnotationSurfaceOccurrence,0>::Construct )
- , SchemaEntry("ifcannotationsymboloccurrence",&STEP::ObjectHelper<IfcAnnotationSymbolOccurrence,0>::Construct )
- , SchemaEntry("ifcannotationtextoccurrence",&STEP::ObjectHelper<IfcAnnotationTextOccurrence,0>::Construct )
- , SchemaEntry("ifcapplication",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcappliedvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcappliedvaluerelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcapproval",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcapprovalactorrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcapprovalpropertyrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcapprovalrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcprofiledef",&STEP::ObjectHelper<IfcProfileDef,2>::Construct )
- , SchemaEntry("ifcarbitraryclosedprofiledef",&STEP::ObjectHelper<IfcArbitraryClosedProfileDef,1>::Construct )
- , SchemaEntry("ifcarbitraryopenprofiledef",&STEP::ObjectHelper<IfcArbitraryOpenProfileDef,1>::Construct )
- , SchemaEntry("ifcarbitraryprofiledefwithvoids",&STEP::ObjectHelper<IfcArbitraryProfileDefWithVoids,1>::Construct )
- , SchemaEntry("ifcgroup",&STEP::ObjectHelper<IfcGroup,0>::Construct )
- , SchemaEntry("ifcasset",&STEP::ObjectHelper<IfcAsset,9>::Construct )
- , SchemaEntry("ifcparameterizedprofiledef",&STEP::ObjectHelper<IfcParameterizedProfileDef,1>::Construct )
- , SchemaEntry("ifcishapeprofiledef",&STEP::ObjectHelper<IfcIShapeProfileDef,5>::Construct )
- , SchemaEntry("ifcasymmetricishapeprofiledef",&STEP::ObjectHelper<IfcAsymmetricIShapeProfileDef,4>::Construct )
- , SchemaEntry("ifcplacement",&STEP::ObjectHelper<IfcPlacement,1>::Construct )
- , SchemaEntry("ifcaxis1placement",&STEP::ObjectHelper<IfcAxis1Placement,1>::Construct )
- , SchemaEntry("ifcaxis2placement2d",&STEP::ObjectHelper<IfcAxis2Placement2D,1>::Construct )
- , SchemaEntry("ifcaxis2placement3d",&STEP::ObjectHelper<IfcAxis2Placement3D,2>::Construct )
- , SchemaEntry("ifcbsplinecurve",&STEP::ObjectHelper<IfcBSplineCurve,5>::Construct )
- , SchemaEntry("ifcelement",&STEP::ObjectHelper<IfcElement,1>::Construct )
- , SchemaEntry("ifcbuildingelement",&STEP::ObjectHelper<IfcBuildingElement,0>::Construct )
- , SchemaEntry("ifcbeam",&STEP::ObjectHelper<IfcBeam,0>::Construct )
- , SchemaEntry("ifcbuildingelementtype",&STEP::ObjectHelper<IfcBuildingElementType,0>::Construct )
- , SchemaEntry("ifcbeamtype",&STEP::ObjectHelper<IfcBeamType,1>::Construct )
- , SchemaEntry("ifcbeziercurve",&STEP::ObjectHelper<IfcBezierCurve,0>::Construct )
- , SchemaEntry("ifcsurfacetexture",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcblobtexture",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccsgprimitive3d",&STEP::ObjectHelper<IfcCsgPrimitive3D,1>::Construct )
- , SchemaEntry("ifcblock",&STEP::ObjectHelper<IfcBlock,3>::Construct )
- , SchemaEntry("ifcboilertype",&STEP::ObjectHelper<IfcBoilerType,1>::Construct )
- , SchemaEntry("ifcbooleanresult",&STEP::ObjectHelper<IfcBooleanResult,3>::Construct )
- , SchemaEntry("ifcbooleanclippingresult",&STEP::ObjectHelper<IfcBooleanClippingResult,0>::Construct )
- , SchemaEntry("ifcboundarycondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcboundaryedgecondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcboundaryfacecondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcboundarynodecondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcboundarynodeconditionwarping",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsurface",&STEP::ObjectHelper<IfcSurface,0>::Construct )
- , SchemaEntry("ifcboundedsurface",&STEP::ObjectHelper<IfcBoundedSurface,0>::Construct )
- , SchemaEntry("ifcboundingbox",&STEP::ObjectHelper<IfcBoundingBox,4>::Construct )
- , SchemaEntry("ifchalfspacesolid",&STEP::ObjectHelper<IfcHalfSpaceSolid,2>::Construct )
- , SchemaEntry("ifcboxedhalfspace",&STEP::ObjectHelper<IfcBoxedHalfSpace,1>::Construct )
- , SchemaEntry("ifcspatialstructureelement",&STEP::ObjectHelper<IfcSpatialStructureElement,2>::Construct )
- , SchemaEntry("ifcbuilding",&STEP::ObjectHelper<IfcBuilding,3>::Construct )
- , SchemaEntry("ifcbuildingelementcomponent",&STEP::ObjectHelper<IfcBuildingElementComponent,0>::Construct )
- , SchemaEntry("ifcbuildingelementpart",&STEP::ObjectHelper<IfcBuildingElementPart,0>::Construct )
- , SchemaEntry("ifcbuildingelementproxy",&STEP::ObjectHelper<IfcBuildingElementProxy,1>::Construct )
- , SchemaEntry("ifcbuildingelementproxytype",&STEP::ObjectHelper<IfcBuildingElementProxyType,1>::Construct )
- , SchemaEntry("ifcbuildingstorey",&STEP::ObjectHelper<IfcBuildingStorey,1>::Construct )
- , SchemaEntry("ifccshapeprofiledef",&STEP::ObjectHelper<IfcCShapeProfileDef,6>::Construct )
- , SchemaEntry("ifcflowfittingtype",&STEP::ObjectHelper<IfcFlowFittingType,0>::Construct )
- , SchemaEntry("ifccablecarrierfittingtype",&STEP::ObjectHelper<IfcCableCarrierFittingType,1>::Construct )
- , SchemaEntry("ifcflowsegmenttype",&STEP::ObjectHelper<IfcFlowSegmentType,0>::Construct )
- , SchemaEntry("ifccablecarriersegmenttype",&STEP::ObjectHelper<IfcCableCarrierSegmentType,1>::Construct )
- , SchemaEntry("ifccablesegmenttype",&STEP::ObjectHelper<IfcCableSegmentType,1>::Construct )
- , SchemaEntry("ifccalendardate",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpoint",&STEP::ObjectHelper<IfcPoint,0>::Construct )
- , SchemaEntry("ifccartesianpoint",&STEP::ObjectHelper<IfcCartesianPoint,1>::Construct )
- , SchemaEntry("ifccartesiantransformationoperator",&STEP::ObjectHelper<IfcCartesianTransformationOperator,4>::Construct )
- , SchemaEntry("ifccartesiantransformationoperator2d",&STEP::ObjectHelper<IfcCartesianTransformationOperator2D,0>::Construct )
- , SchemaEntry("ifccartesiantransformationoperator2dnonuniform",&STEP::ObjectHelper<IfcCartesianTransformationOperator2DnonUniform,1>::Construct )
- , SchemaEntry("ifccartesiantransformationoperator3d",&STEP::ObjectHelper<IfcCartesianTransformationOperator3D,1>::Construct )
- , SchemaEntry("ifccartesiantransformationoperator3dnonuniform",&STEP::ObjectHelper<IfcCartesianTransformationOperator3DnonUniform,2>::Construct )
- , SchemaEntry("ifccenterlineprofiledef",&STEP::ObjectHelper<IfcCenterLineProfileDef,1>::Construct )
- , SchemaEntry("ifcfeatureelement",&STEP::ObjectHelper<IfcFeatureElement,0>::Construct )
- , SchemaEntry("ifcfeatureelementsubtraction",&STEP::ObjectHelper<IfcFeatureElementSubtraction,0>::Construct )
- , SchemaEntry("ifcedgefeature",&STEP::ObjectHelper<IfcEdgeFeature,1>::Construct )
- , SchemaEntry("ifcchamferedgefeature",&STEP::ObjectHelper<IfcChamferEdgeFeature,2>::Construct )
- , SchemaEntry("ifcchillertype",&STEP::ObjectHelper<IfcChillerType,1>::Construct )
- , SchemaEntry("ifcconic",&STEP::ObjectHelper<IfcConic,1>::Construct )
- , SchemaEntry("ifccircle",&STEP::ObjectHelper<IfcCircle,1>::Construct )
- , SchemaEntry("ifccircleprofiledef",&STEP::ObjectHelper<IfcCircleProfileDef,1>::Construct )
- , SchemaEntry("ifccirclehollowprofiledef",&STEP::ObjectHelper<IfcCircleHollowProfileDef,1>::Construct )
- , SchemaEntry("ifcclassification",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcclassificationitem",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcclassificationitemrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcclassificationnotation",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcclassificationnotationfacet",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcexternalreference",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcclassificationreference",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctopologicalrepresentationitem",&STEP::ObjectHelper<IfcTopologicalRepresentationItem,0>::Construct )
- , SchemaEntry("ifcconnectedfaceset",&STEP::ObjectHelper<IfcConnectedFaceSet,1>::Construct )
- , SchemaEntry("ifcclosedshell",&STEP::ObjectHelper<IfcClosedShell,0>::Construct )
- , SchemaEntry("ifccoiltype",&STEP::ObjectHelper<IfcCoilType,1>::Construct )
- , SchemaEntry("ifccolourspecification",&STEP::ObjectHelper<IfcColourSpecification,1>::Construct )
- , SchemaEntry("ifccolourrgb",&STEP::ObjectHelper<IfcColourRgb,3>::Construct )
- , SchemaEntry("ifccolumn",&STEP::ObjectHelper<IfcColumn,0>::Construct )
- , SchemaEntry("ifccolumntype",&STEP::ObjectHelper<IfcColumnType,1>::Construct )
- , SchemaEntry("ifcproperty",&STEP::ObjectHelper<IfcProperty,2>::Construct )
- , SchemaEntry("ifccomplexproperty",&STEP::ObjectHelper<IfcComplexProperty,2>::Construct )
- , SchemaEntry("ifccompositecurvesegment",&STEP::ObjectHelper<IfcCompositeCurveSegment,3>::Construct )
- , SchemaEntry("ifccompositeprofiledef",&STEP::ObjectHelper<IfcCompositeProfileDef,2>::Construct )
- , SchemaEntry("ifcflowmovingdevicetype",&STEP::ObjectHelper<IfcFlowMovingDeviceType,0>::Construct )
- , SchemaEntry("ifccompressortype",&STEP::ObjectHelper<IfcCompressorType,1>::Construct )
- , SchemaEntry("ifccondensertype",&STEP::ObjectHelper<IfcCondenserType,1>::Construct )
- , SchemaEntry("ifccondition",&STEP::ObjectHelper<IfcCondition,0>::Construct )
- , SchemaEntry("ifcconditioncriterion",&STEP::ObjectHelper<IfcConditionCriterion,2>::Construct )
- , SchemaEntry("ifcconnectiongeometry",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconnectioncurvegeometry",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconnectionpointgeometry",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconnectionpointeccentricity",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconnectionportgeometry",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconnectionsurfacegeometry",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconstraint",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconstraintaggregationrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconstraintclassificationrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcconstraintrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcresource",&STEP::ObjectHelper<IfcResource,0>::Construct )
- , SchemaEntry("ifcconstructionresource",&STEP::ObjectHelper<IfcConstructionResource,4>::Construct )
- , SchemaEntry("ifcconstructionequipmentresource",&STEP::ObjectHelper<IfcConstructionEquipmentResource,0>::Construct )
- , SchemaEntry("ifcconstructionmaterialresource",&STEP::ObjectHelper<IfcConstructionMaterialResource,2>::Construct )
- , SchemaEntry("ifcconstructionproductresource",&STEP::ObjectHelper<IfcConstructionProductResource,0>::Construct )
- , SchemaEntry("ifcnamedunit",&STEP::ObjectHelper<IfcNamedUnit,2>::Construct )
- , SchemaEntry("ifccontextdependentunit",&STEP::ObjectHelper<IfcContextDependentUnit,1>::Construct )
- , SchemaEntry("ifccontrollertype",&STEP::ObjectHelper<IfcControllerType,1>::Construct )
- , SchemaEntry("ifcconversionbasedunit",&STEP::ObjectHelper<IfcConversionBasedUnit,2>::Construct )
- , SchemaEntry("ifccooledbeamtype",&STEP::ObjectHelper<IfcCooledBeamType,1>::Construct )
- , SchemaEntry("ifccoolingtowertype",&STEP::ObjectHelper<IfcCoolingTowerType,1>::Construct )
- , SchemaEntry("ifccoordinateduniversaltimeoffset",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccostitem",&STEP::ObjectHelper<IfcCostItem,0>::Construct )
- , SchemaEntry("ifccostschedule",&STEP::ObjectHelper<IfcCostSchedule,8>::Construct )
- , SchemaEntry("ifccostvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccovering",&STEP::ObjectHelper<IfcCovering,1>::Construct )
- , SchemaEntry("ifccoveringtype",&STEP::ObjectHelper<IfcCoveringType,1>::Construct )
- , SchemaEntry("ifccranerailashapeprofiledef",&STEP::ObjectHelper<IfcCraneRailAShapeProfileDef,12>::Construct )
- , SchemaEntry("ifccranerailfshapeprofiledef",&STEP::ObjectHelper<IfcCraneRailFShapeProfileDef,9>::Construct )
- , SchemaEntry("ifccrewresource",&STEP::ObjectHelper<IfcCrewResource,0>::Construct )
- , SchemaEntry("ifcsolidmodel",&STEP::ObjectHelper<IfcSolidModel,0>::Construct )
- , SchemaEntry("ifccsgsolid",&STEP::ObjectHelper<IfcCsgSolid,1>::Construct )
- , SchemaEntry("ifccurrencyrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccurtainwall",&STEP::ObjectHelper<IfcCurtainWall,0>::Construct )
- , SchemaEntry("ifccurtainwalltype",&STEP::ObjectHelper<IfcCurtainWallType,1>::Construct )
- , SchemaEntry("ifccurveboundedplane",&STEP::ObjectHelper<IfcCurveBoundedPlane,3>::Construct )
- , SchemaEntry("ifcpresentationstyle",&STEP::ObjectHelper<IfcPresentationStyle,1>::Construct )
- , SchemaEntry("ifccurvestyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccurvestylefont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccurvestylefontandscaling",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifccurvestylefontpattern",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdampertype",&STEP::ObjectHelper<IfcDamperType,1>::Construct )
- , SchemaEntry("ifcdateandtime",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdefinedsymbol",&STEP::ObjectHelper<IfcDefinedSymbol,2>::Construct )
- , SchemaEntry("ifcderivedprofiledef",&STEP::ObjectHelper<IfcDerivedProfileDef,3>::Construct )
- , SchemaEntry("ifcderivedunit",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcderivedunitelement",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdiameterdimension",&STEP::ObjectHelper<IfcDiameterDimension,0>::Construct )
- , SchemaEntry("ifcdraughtingcalloutrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdimensioncalloutrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdimensioncurve",&STEP::ObjectHelper<IfcDimensionCurve,0>::Construct )
- , SchemaEntry("ifcterminatorsymbol",&STEP::ObjectHelper<IfcTerminatorSymbol,1>::Construct )
- , SchemaEntry("ifcdimensioncurveterminator",&STEP::ObjectHelper<IfcDimensionCurveTerminator,1>::Construct )
- , SchemaEntry("ifcdimensionpair",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdimensionalexponents",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdirection",&STEP::ObjectHelper<IfcDirection,1>::Construct )
- , SchemaEntry("ifcelementcomponent",&STEP::ObjectHelper<IfcElementComponent,0>::Construct )
- , SchemaEntry("ifcdiscreteaccessory",&STEP::ObjectHelper<IfcDiscreteAccessory,0>::Construct )
- , SchemaEntry("ifcelementcomponenttype",&STEP::ObjectHelper<IfcElementComponentType,0>::Construct )
- , SchemaEntry("ifcdiscreteaccessorytype",&STEP::ObjectHelper<IfcDiscreteAccessoryType,0>::Construct )
- , SchemaEntry("ifcdistributionelement",&STEP::ObjectHelper<IfcDistributionElement,0>::Construct )
- , SchemaEntry("ifcdistributionflowelement",&STEP::ObjectHelper<IfcDistributionFlowElement,0>::Construct )
- , SchemaEntry("ifcdistributionchamberelement",&STEP::ObjectHelper<IfcDistributionChamberElement,0>::Construct )
- , SchemaEntry("ifcdistributionchamberelementtype",&STEP::ObjectHelper<IfcDistributionChamberElementType,1>::Construct )
- , SchemaEntry("ifcdistributioncontrolelement",&STEP::ObjectHelper<IfcDistributionControlElement,1>::Construct )
- , SchemaEntry("ifcport",&STEP::ObjectHelper<IfcPort,0>::Construct )
- , SchemaEntry("ifcdistributionport",&STEP::ObjectHelper<IfcDistributionPort,1>::Construct )
- , SchemaEntry("ifcdocumentelectronicformat",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdocumentinformation",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdocumentinformationrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdocumentreference",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdoor",&STEP::ObjectHelper<IfcDoor,2>::Construct )
- , SchemaEntry("ifcpropertydefinition",&STEP::ObjectHelper<IfcPropertyDefinition,0>::Construct )
- , SchemaEntry("ifcpropertysetdefinition",&STEP::ObjectHelper<IfcPropertySetDefinition,0>::Construct )
- , SchemaEntry("ifcdoorliningproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdoorpanelproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdoorstyle",&STEP::ObjectHelper<IfcDoorStyle,4>::Construct )
- , SchemaEntry("ifcpredefineditem",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefinedcolour",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdraughtingpredefinedcolour",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefinedcurvefont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdraughtingpredefinedcurvefont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefinedtextfont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcdraughtingpredefinedtextfont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcductfittingtype",&STEP::ObjectHelper<IfcDuctFittingType,1>::Construct )
- , SchemaEntry("ifcductsegmenttype",&STEP::ObjectHelper<IfcDuctSegmentType,1>::Construct )
- , SchemaEntry("ifcflowtreatmentdevicetype",&STEP::ObjectHelper<IfcFlowTreatmentDeviceType,0>::Construct )
- , SchemaEntry("ifcductsilencertype",&STEP::ObjectHelper<IfcDuctSilencerType,1>::Construct )
- , SchemaEntry("ifcedge",&STEP::ObjectHelper<IfcEdge,2>::Construct )
- , SchemaEntry("ifcedgecurve",&STEP::ObjectHelper<IfcEdgeCurve,2>::Construct )
- , SchemaEntry("ifcloop",&STEP::ObjectHelper<IfcLoop,0>::Construct )
- , SchemaEntry("ifcedgeloop",&STEP::ObjectHelper<IfcEdgeLoop,1>::Construct )
- , SchemaEntry("ifcelectricappliancetype",&STEP::ObjectHelper<IfcElectricApplianceType,1>::Construct )
- , SchemaEntry("ifcflowcontroller",&STEP::ObjectHelper<IfcFlowController,0>::Construct )
- , SchemaEntry("ifcelectricdistributionpoint",&STEP::ObjectHelper<IfcElectricDistributionPoint,2>::Construct )
- , SchemaEntry("ifcflowstoragedevicetype",&STEP::ObjectHelper<IfcFlowStorageDeviceType,0>::Construct )
- , SchemaEntry("ifcelectricflowstoragedevicetype",&STEP::ObjectHelper<IfcElectricFlowStorageDeviceType,1>::Construct )
- , SchemaEntry("ifcelectricgeneratortype",&STEP::ObjectHelper<IfcElectricGeneratorType,1>::Construct )
- , SchemaEntry("ifcelectricheatertype",&STEP::ObjectHelper<IfcElectricHeaterType,1>::Construct )
- , SchemaEntry("ifcelectricmotortype",&STEP::ObjectHelper<IfcElectricMotorType,1>::Construct )
- , SchemaEntry("ifcelectrictimecontroltype",&STEP::ObjectHelper<IfcElectricTimeControlType,1>::Construct )
- , SchemaEntry("ifcenergyproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcelectricalbaseproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsystem",&STEP::ObjectHelper<IfcSystem,0>::Construct )
- , SchemaEntry("ifcelectricalcircuit",&STEP::ObjectHelper<IfcElectricalCircuit,0>::Construct )
- , SchemaEntry("ifcelectricalelement",&STEP::ObjectHelper<IfcElectricalElement,0>::Construct )
- , SchemaEntry("ifcelementassembly",&STEP::ObjectHelper<IfcElementAssembly,2>::Construct )
- , SchemaEntry("ifcelementquantity",&STEP::ObjectHelper<IfcElementQuantity,2>::Construct )
- , SchemaEntry("ifcelementarysurface",&STEP::ObjectHelper<IfcElementarySurface,1>::Construct )
- , SchemaEntry("ifcellipse",&STEP::ObjectHelper<IfcEllipse,2>::Construct )
- , SchemaEntry("ifcellipseprofiledef",&STEP::ObjectHelper<IfcEllipseProfileDef,2>::Construct )
- , SchemaEntry("ifcenergyconversiondevice",&STEP::ObjectHelper<IfcEnergyConversionDevice,0>::Construct )
- , SchemaEntry("ifcenvironmentalimpactvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcequipmentelement",&STEP::ObjectHelper<IfcEquipmentElement,0>::Construct )
- , SchemaEntry("ifcequipmentstandard",&STEP::ObjectHelper<IfcEquipmentStandard,0>::Construct )
- , SchemaEntry("ifcevaporativecoolertype",&STEP::ObjectHelper<IfcEvaporativeCoolerType,1>::Construct )
- , SchemaEntry("ifcevaporatortype",&STEP::ObjectHelper<IfcEvaporatorType,1>::Construct )
- , SchemaEntry("ifcmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcextendedmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcexternallydefinedhatchstyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcexternallydefinedsurfacestyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcexternallydefinedsymbol",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcexternallydefinedtextfont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsweptareasolid",&STEP::ObjectHelper<IfcSweptAreaSolid,2>::Construct )
- , SchemaEntry("ifcextrudedareasolid",&STEP::ObjectHelper<IfcExtrudedAreaSolid,2>::Construct )
- , SchemaEntry("ifcface",&STEP::ObjectHelper<IfcFace,1>::Construct )
- , SchemaEntry("ifcfacebasedsurfacemodel",&STEP::ObjectHelper<IfcFaceBasedSurfaceModel,1>::Construct )
- , SchemaEntry("ifcfacebound",&STEP::ObjectHelper<IfcFaceBound,2>::Construct )
- , SchemaEntry("ifcfaceouterbound",&STEP::ObjectHelper<IfcFaceOuterBound,0>::Construct )
- , SchemaEntry("ifcfacesurface",&STEP::ObjectHelper<IfcFaceSurface,2>::Construct )
- , SchemaEntry("ifcmanifoldsolidbrep",&STEP::ObjectHelper<IfcManifoldSolidBrep,1>::Construct )
- , SchemaEntry("ifcfacetedbrep",&STEP::ObjectHelper<IfcFacetedBrep,0>::Construct )
- , SchemaEntry("ifcfacetedbrepwithvoids",&STEP::ObjectHelper<IfcFacetedBrepWithVoids,1>::Construct )
- , SchemaEntry("ifcstructuralconnectioncondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcfailureconnectioncondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcfantype",&STEP::ObjectHelper<IfcFanType,1>::Construct )
- , SchemaEntry("ifcfastener",&STEP::ObjectHelper<IfcFastener,0>::Construct )
- , SchemaEntry("ifcfastenertype",&STEP::ObjectHelper<IfcFastenerType,0>::Construct )
- , SchemaEntry("ifcfeatureelementaddition",&STEP::ObjectHelper<IfcFeatureElementAddition,0>::Construct )
- , SchemaEntry("ifcfillareastyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcfillareastylehatching",&STEP::ObjectHelper<IfcFillAreaStyleHatching,5>::Construct )
- , SchemaEntry("ifcfillareastyletilesymbolwithstyle",&STEP::ObjectHelper<IfcFillAreaStyleTileSymbolWithStyle,1>::Construct )
- , SchemaEntry("ifcfillareastyletiles",&STEP::ObjectHelper<IfcFillAreaStyleTiles,3>::Construct )
- , SchemaEntry("ifcfiltertype",&STEP::ObjectHelper<IfcFilterType,1>::Construct )
- , SchemaEntry("ifcfiresuppressionterminaltype",&STEP::ObjectHelper<IfcFireSuppressionTerminalType,1>::Construct )
- , SchemaEntry("ifcflowfitting",&STEP::ObjectHelper<IfcFlowFitting,0>::Construct )
- , SchemaEntry("ifcflowinstrumenttype",&STEP::ObjectHelper<IfcFlowInstrumentType,1>::Construct )
- , SchemaEntry("ifcflowmetertype",&STEP::ObjectHelper<IfcFlowMeterType,1>::Construct )
- , SchemaEntry("ifcflowmovingdevice",&STEP::ObjectHelper<IfcFlowMovingDevice,0>::Construct )
- , SchemaEntry("ifcflowsegment",&STEP::ObjectHelper<IfcFlowSegment,0>::Construct )
- , SchemaEntry("ifcflowstoragedevice",&STEP::ObjectHelper<IfcFlowStorageDevice,0>::Construct )
- , SchemaEntry("ifcflowterminal",&STEP::ObjectHelper<IfcFlowTerminal,0>::Construct )
- , SchemaEntry("ifcflowtreatmentdevice",&STEP::ObjectHelper<IfcFlowTreatmentDevice,0>::Construct )
- , SchemaEntry("ifcfluidflowproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcfooting",&STEP::ObjectHelper<IfcFooting,1>::Construct )
- , SchemaEntry("ifcfuelproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcfurnishingelement",&STEP::ObjectHelper<IfcFurnishingElement,0>::Construct )
- , SchemaEntry("ifcfurnishingelementtype",&STEP::ObjectHelper<IfcFurnishingElementType,0>::Construct )
- , SchemaEntry("ifcfurniturestandard",&STEP::ObjectHelper<IfcFurnitureStandard,0>::Construct )
- , SchemaEntry("ifcfurnituretype",&STEP::ObjectHelper<IfcFurnitureType,1>::Construct )
- , SchemaEntry("ifcgasterminaltype",&STEP::ObjectHelper<IfcGasTerminalType,1>::Construct )
- , SchemaEntry("ifcgeneralmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcprofileproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcgeneralprofileproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcgeometricset",&STEP::ObjectHelper<IfcGeometricSet,1>::Construct )
- , SchemaEntry("ifcgeometriccurveset",&STEP::ObjectHelper<IfcGeometricCurveSet,0>::Construct )
- , SchemaEntry("ifcrepresentationcontext",&STEP::ObjectHelper<IfcRepresentationContext,2>::Construct )
- , SchemaEntry("ifcgeometricrepresentationcontext",&STEP::ObjectHelper<IfcGeometricRepresentationContext,4>::Construct )
- , SchemaEntry("ifcgeometricrepresentationsubcontext",&STEP::ObjectHelper<IfcGeometricRepresentationSubContext,4>::Construct )
- , SchemaEntry("ifcgrid",&STEP::ObjectHelper<IfcGrid,3>::Construct )
- , SchemaEntry("ifcgridaxis",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcobjectplacement",&STEP::ObjectHelper<IfcObjectPlacement,0>::Construct )
- , SchemaEntry("ifcgridplacement",&STEP::ObjectHelper<IfcGridPlacement,2>::Construct )
- , SchemaEntry("ifcheatexchangertype",&STEP::ObjectHelper<IfcHeatExchangerType,1>::Construct )
- , SchemaEntry("ifchumidifiertype",&STEP::ObjectHelper<IfcHumidifierType,1>::Construct )
- , SchemaEntry("ifchygroscopicmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcimagetexture",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcinventory",&STEP::ObjectHelper<IfcInventory,6>::Construct )
- , SchemaEntry("ifctimeseries",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcirregulartimeseries",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcirregulartimeseriesvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcjunctionboxtype",&STEP::ObjectHelper<IfcJunctionBoxType,1>::Construct )
- , SchemaEntry("ifclshapeprofiledef",&STEP::ObjectHelper<IfcLShapeProfileDef,8>::Construct )
- , SchemaEntry("ifclaborresource",&STEP::ObjectHelper<IfcLaborResource,1>::Construct )
- , SchemaEntry("ifclamptype",&STEP::ObjectHelper<IfcLampType,1>::Construct )
- , SchemaEntry("ifclibraryinformation",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifclibraryreference",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifclightdistributiondata",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifclightfixturetype",&STEP::ObjectHelper<IfcLightFixtureType,1>::Construct )
- , SchemaEntry("ifclightintensitydistribution",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifclightsource",&STEP::ObjectHelper<IfcLightSource,4>::Construct )
- , SchemaEntry("ifclightsourceambient",&STEP::ObjectHelper<IfcLightSourceAmbient,0>::Construct )
- , SchemaEntry("ifclightsourcedirectional",&STEP::ObjectHelper<IfcLightSourceDirectional,1>::Construct )
- , SchemaEntry("ifclightsourcegoniometric",&STEP::ObjectHelper<IfcLightSourceGoniometric,6>::Construct )
- , SchemaEntry("ifclightsourcepositional",&STEP::ObjectHelper<IfcLightSourcePositional,5>::Construct )
- , SchemaEntry("ifclightsourcespot",&STEP::ObjectHelper<IfcLightSourceSpot,4>::Construct )
- , SchemaEntry("ifcline",&STEP::ObjectHelper<IfcLine,2>::Construct )
- , SchemaEntry("ifclineardimension",&STEP::ObjectHelper<IfcLinearDimension,0>::Construct )
- , SchemaEntry("ifclocalplacement",&STEP::ObjectHelper<IfcLocalPlacement,2>::Construct )
- , SchemaEntry("ifclocaltime",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmappeditem",&STEP::ObjectHelper<IfcMappedItem,2>::Construct )
- , SchemaEntry("ifcmaterial",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmaterialclassificationrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcproductrepresentation",&STEP::ObjectHelper<IfcProductRepresentation,3>::Construct )
- , SchemaEntry("ifcmaterialdefinitionrepresentation",&STEP::ObjectHelper<IfcMaterialDefinitionRepresentation,1>::Construct )
- , SchemaEntry("ifcmateriallayer",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmateriallayerset",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmateriallayersetusage",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmateriallist",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmeasurewithunit",&STEP::ObjectHelper<IfcMeasureWithUnit,2>::Construct )
- , SchemaEntry("ifcmechanicalmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmechanicalconcretematerialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmechanicalfastener",&STEP::ObjectHelper<IfcMechanicalFastener,2>::Construct )
- , SchemaEntry("ifcmechanicalfastenertype",&STEP::ObjectHelper<IfcMechanicalFastenerType,0>::Construct )
- , SchemaEntry("ifcmechanicalsteelmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmember",&STEP::ObjectHelper<IfcMember,0>::Construct )
- , SchemaEntry("ifcmembertype",&STEP::ObjectHelper<IfcMemberType,1>::Construct )
- , SchemaEntry("ifcmetric",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmonetaryunit",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcmotorconnectiontype",&STEP::ObjectHelper<IfcMotorConnectionType,1>::Construct )
- , SchemaEntry("ifcprocess",&STEP::ObjectHelper<IfcProcess,0>::Construct )
- , SchemaEntry("ifctask",&STEP::ObjectHelper<IfcTask,5>::Construct )
- , SchemaEntry("ifcmove",&STEP::ObjectHelper<IfcMove,3>::Construct )
- , SchemaEntry("ifcobjective",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcoccupant",&STEP::ObjectHelper<IfcOccupant,1>::Construct )
- , SchemaEntry("ifcoffsetcurve2d",&STEP::ObjectHelper<IfcOffsetCurve2D,3>::Construct )
- , SchemaEntry("ifcoffsetcurve3d",&STEP::ObjectHelper<IfcOffsetCurve3D,4>::Construct )
- , SchemaEntry("ifconedirectionrepeatfactor",&STEP::ObjectHelper<IfcOneDirectionRepeatFactor,1>::Construct )
- , SchemaEntry("ifcopenshell",&STEP::ObjectHelper<IfcOpenShell,0>::Construct )
- , SchemaEntry("ifcopeningelement",&STEP::ObjectHelper<IfcOpeningElement,0>::Construct )
- , SchemaEntry("ifcopticalmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcorderaction",&STEP::ObjectHelper<IfcOrderAction,1>::Construct )
- , SchemaEntry("ifcorganization",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcorganizationrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcorientededge",&STEP::ObjectHelper<IfcOrientedEdge,2>::Construct )
- , SchemaEntry("ifcoutlettype",&STEP::ObjectHelper<IfcOutletType,1>::Construct )
- , SchemaEntry("ifcownerhistory",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpath",&STEP::ObjectHelper<IfcPath,1>::Construct )
- , SchemaEntry("ifcperformancehistory",&STEP::ObjectHelper<IfcPerformanceHistory,1>::Construct )
- , SchemaEntry("ifcpermeablecoveringproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpermit",&STEP::ObjectHelper<IfcPermit,1>::Construct )
- , SchemaEntry("ifcperson",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpersonandorganization",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcphysicalquantity",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcphysicalcomplexquantity",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcphysicalsimplequantity",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpile",&STEP::ObjectHelper<IfcPile,2>::Construct )
- , SchemaEntry("ifcpipefittingtype",&STEP::ObjectHelper<IfcPipeFittingType,1>::Construct )
- , SchemaEntry("ifcpipesegmenttype",&STEP::ObjectHelper<IfcPipeSegmentType,1>::Construct )
- , SchemaEntry("ifcpixeltexture",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcplanarextent",&STEP::ObjectHelper<IfcPlanarExtent,2>::Construct )
- , SchemaEntry("ifcplanarbox",&STEP::ObjectHelper<IfcPlanarBox,1>::Construct )
- , SchemaEntry("ifcplane",&STEP::ObjectHelper<IfcPlane,0>::Construct )
- , SchemaEntry("ifcplate",&STEP::ObjectHelper<IfcPlate,0>::Construct )
- , SchemaEntry("ifcplatetype",&STEP::ObjectHelper<IfcPlateType,1>::Construct )
- , SchemaEntry("ifcpointoncurve",&STEP::ObjectHelper<IfcPointOnCurve,2>::Construct )
- , SchemaEntry("ifcpointonsurface",&STEP::ObjectHelper<IfcPointOnSurface,3>::Construct )
- , SchemaEntry("ifcpolyloop",&STEP::ObjectHelper<IfcPolyLoop,1>::Construct )
- , SchemaEntry("ifcpolygonalboundedhalfspace",&STEP::ObjectHelper<IfcPolygonalBoundedHalfSpace,2>::Construct )
- , SchemaEntry("ifcpolyline",&STEP::ObjectHelper<IfcPolyline,1>::Construct )
- , SchemaEntry("ifcpostaladdress",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefinedsymbol",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefineddimensionsymbol",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefinedpointmarkersymbol",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpredefinedterminatorsymbol",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpresentationlayerassignment",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpresentationlayerwithstyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpresentationstyleassignment",&STEP::ObjectHelper<IfcPresentationStyleAssignment,1>::Construct )
- , SchemaEntry("ifcprocedure",&STEP::ObjectHelper<IfcProcedure,3>::Construct )
- , SchemaEntry("ifcproductdefinitionshape",&STEP::ObjectHelper<IfcProductDefinitionShape,0>::Construct )
- , SchemaEntry("ifcproductsofcombustionproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcproject",&STEP::ObjectHelper<IfcProject,4>::Construct )
- , SchemaEntry("ifcprojectorder",&STEP::ObjectHelper<IfcProjectOrder,3>::Construct )
- , SchemaEntry("ifcprojectorderrecord",&STEP::ObjectHelper<IfcProjectOrderRecord,2>::Construct )
- , SchemaEntry("ifcprojectioncurve",&STEP::ObjectHelper<IfcProjectionCurve,0>::Construct )
- , SchemaEntry("ifcprojectionelement",&STEP::ObjectHelper<IfcProjectionElement,0>::Construct )
- , SchemaEntry("ifcsimpleproperty",&STEP::ObjectHelper<IfcSimpleProperty,0>::Construct )
- , SchemaEntry("ifcpropertyboundedvalue",&STEP::ObjectHelper<IfcPropertyBoundedValue,3>::Construct )
- , SchemaEntry("ifcpropertyconstraintrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpropertydependencyrelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpropertyenumeratedvalue",&STEP::ObjectHelper<IfcPropertyEnumeratedValue,2>::Construct )
- , SchemaEntry("ifcpropertyenumeration",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcpropertylistvalue",&STEP::ObjectHelper<IfcPropertyListValue,2>::Construct )
- , SchemaEntry("ifcpropertyreferencevalue",&STEP::ObjectHelper<IfcPropertyReferenceValue,2>::Construct )
- , SchemaEntry("ifcpropertyset",&STEP::ObjectHelper<IfcPropertySet,1>::Construct )
- , SchemaEntry("ifcpropertysinglevalue",&STEP::ObjectHelper<IfcPropertySingleValue,2>::Construct )
- , SchemaEntry("ifcpropertytablevalue",&STEP::ObjectHelper<IfcPropertyTableValue,5>::Construct )
- , SchemaEntry("ifcprotectivedevicetype",&STEP::ObjectHelper<IfcProtectiveDeviceType,1>::Construct )
- , SchemaEntry("ifcproxy",&STEP::ObjectHelper<IfcProxy,2>::Construct )
- , SchemaEntry("ifcpumptype",&STEP::ObjectHelper<IfcPumpType,1>::Construct )
- , SchemaEntry("ifcquantityarea",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcquantitycount",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcquantitylength",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcquantitytime",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcquantityvolume",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcquantityweight",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcradiusdimension",&STEP::ObjectHelper<IfcRadiusDimension,0>::Construct )
- , SchemaEntry("ifcrailing",&STEP::ObjectHelper<IfcRailing,1>::Construct )
- , SchemaEntry("ifcrailingtype",&STEP::ObjectHelper<IfcRailingType,1>::Construct )
- , SchemaEntry("ifcramp",&STEP::ObjectHelper<IfcRamp,1>::Construct )
- , SchemaEntry("ifcrampflight",&STEP::ObjectHelper<IfcRampFlight,0>::Construct )
- , SchemaEntry("ifcrampflighttype",&STEP::ObjectHelper<IfcRampFlightType,1>::Construct )
- , SchemaEntry("ifcrationalbeziercurve",&STEP::ObjectHelper<IfcRationalBezierCurve,1>::Construct )
- , SchemaEntry("ifcrectangleprofiledef",&STEP::ObjectHelper<IfcRectangleProfileDef,2>::Construct )
- , SchemaEntry("ifcrectanglehollowprofiledef",&STEP::ObjectHelper<IfcRectangleHollowProfileDef,3>::Construct )
- , SchemaEntry("ifcrectangularpyramid",&STEP::ObjectHelper<IfcRectangularPyramid,3>::Construct )
- , SchemaEntry("ifcrectangulartrimmedsurface",&STEP::ObjectHelper<IfcRectangularTrimmedSurface,7>::Construct )
- , SchemaEntry("ifcreferencesvaluedocument",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcregulartimeseries",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcreinforcementbarproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcreinforcementdefinitionproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcreinforcingelement",&STEP::ObjectHelper<IfcReinforcingElement,1>::Construct )
- , SchemaEntry("ifcreinforcingbar",&STEP::ObjectHelper<IfcReinforcingBar,5>::Construct )
- , SchemaEntry("ifcreinforcingmesh",&STEP::ObjectHelper<IfcReinforcingMesh,8>::Construct )
- , SchemaEntry("ifcrelationship",&STEP::ObjectHelper<IfcRelationship,0>::Construct )
- , SchemaEntry("ifcreldecomposes",&STEP::ObjectHelper<IfcRelDecomposes,2>::Construct )
- , SchemaEntry("ifcrelaggregates",&STEP::ObjectHelper<IfcRelAggregates,0>::Construct )
- , SchemaEntry("ifcrelassigns",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstocontrol",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstasks",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstoactor",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstogroup",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstoprocess",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstoproduct",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstoprojectorder",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassignstoresource",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociates",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesappliedvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesapproval",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesclassification",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesconstraint",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesdocument",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociateslibrary",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesmaterial",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelassociatesprofileproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnects",&STEP::ObjectHelper<IfcRelConnects,0>::Construct )
- , SchemaEntry("ifcrelconnectselements",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectspathelements",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectsporttoelement",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectsports",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectsstructuralactivity",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectsstructuralelement",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectsstructuralmember",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectswitheccentricity",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelconnectswithrealizingelements",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelcontainedinspatialstructure",&STEP::ObjectHelper<IfcRelContainedInSpatialStructure,2>::Construct )
- , SchemaEntry("ifcrelcoversbldgelements",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelcoversspaces",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcreldefines",&STEP::ObjectHelper<IfcRelDefines,1>::Construct )
- , SchemaEntry("ifcreldefinesbyproperties",&STEP::ObjectHelper<IfcRelDefinesByProperties,1>::Construct )
- , SchemaEntry("ifcreldefinesbytype",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelfillselement",&STEP::ObjectHelper<IfcRelFillsElement,2>::Construct )
- , SchemaEntry("ifcrelflowcontrolelements",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelinteractionrequirements",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelnests",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcreloccupiesspaces",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcreloverridesproperties",&STEP::ObjectHelper<IfcRelOverridesProperties,1>::Construct )
- , SchemaEntry("ifcrelprojectselement",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelreferencedinspatialstructure",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelschedulescostitems",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelsequence",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelservicesbuildings",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelspaceboundary",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrelvoidselement",&STEP::ObjectHelper<IfcRelVoidsElement,2>::Construct )
- , SchemaEntry("ifcrelaxation",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrepresentation",&STEP::ObjectHelper<IfcRepresentation,4>::Construct )
- , SchemaEntry("ifcrepresentationmap",&STEP::ObjectHelper<IfcRepresentationMap,2>::Construct )
- , SchemaEntry("ifcrevolvedareasolid",&STEP::ObjectHelper<IfcRevolvedAreaSolid,2>::Construct )
- , SchemaEntry("ifcribplateprofileproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcrightcircularcone",&STEP::ObjectHelper<IfcRightCircularCone,2>::Construct )
- , SchemaEntry("ifcrightcircularcylinder",&STEP::ObjectHelper<IfcRightCircularCylinder,2>::Construct )
- , SchemaEntry("ifcroof",&STEP::ObjectHelper<IfcRoof,1>::Construct )
- , SchemaEntry("ifcroundededgefeature",&STEP::ObjectHelper<IfcRoundedEdgeFeature,1>::Construct )
- , SchemaEntry("ifcroundedrectangleprofiledef",&STEP::ObjectHelper<IfcRoundedRectangleProfileDef,1>::Construct )
- , SchemaEntry("ifcsiunit",&STEP::ObjectHelper<IfcSIUnit,2>::Construct )
- , SchemaEntry("ifcsanitaryterminaltype",&STEP::ObjectHelper<IfcSanitaryTerminalType,1>::Construct )
- , SchemaEntry("ifcscheduletimecontrol",&STEP::ObjectHelper<IfcScheduleTimeControl,18>::Construct )
- , SchemaEntry("ifcsectionproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsectionreinforcementproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsectionedspine",&STEP::ObjectHelper<IfcSectionedSpine,3>::Construct )
- , SchemaEntry("ifcsensortype",&STEP::ObjectHelper<IfcSensorType,1>::Construct )
- , SchemaEntry("ifcservicelife",&STEP::ObjectHelper<IfcServiceLife,2>::Construct )
- , SchemaEntry("ifcservicelifefactor",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcshapeaspect",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcshapemodel",&STEP::ObjectHelper<IfcShapeModel,0>::Construct )
- , SchemaEntry("ifcshaperepresentation",&STEP::ObjectHelper<IfcShapeRepresentation,0>::Construct )
- , SchemaEntry("ifcshellbasedsurfacemodel",&STEP::ObjectHelper<IfcShellBasedSurfaceModel,1>::Construct )
- , SchemaEntry("ifcsite",&STEP::ObjectHelper<IfcSite,5>::Construct )
- , SchemaEntry("ifcslab",&STEP::ObjectHelper<IfcSlab,1>::Construct )
- , SchemaEntry("ifcslabtype",&STEP::ObjectHelper<IfcSlabType,1>::Construct )
- , SchemaEntry("ifcslippageconnectioncondition",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsoundproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsoundvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcspace",&STEP::ObjectHelper<IfcSpace,2>::Construct )
- , SchemaEntry("ifcspaceheatertype",&STEP::ObjectHelper<IfcSpaceHeaterType,1>::Construct )
- , SchemaEntry("ifcspaceprogram",&STEP::ObjectHelper<IfcSpaceProgram,5>::Construct )
- , SchemaEntry("ifcspacethermalloadproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcspatialstructureelementtype",&STEP::ObjectHelper<IfcSpatialStructureElementType,0>::Construct )
- , SchemaEntry("ifcspacetype",&STEP::ObjectHelper<IfcSpaceType,1>::Construct )
- , SchemaEntry("ifcsphere",&STEP::ObjectHelper<IfcSphere,1>::Construct )
- , SchemaEntry("ifcstackterminaltype",&STEP::ObjectHelper<IfcStackTerminalType,1>::Construct )
- , SchemaEntry("ifcstair",&STEP::ObjectHelper<IfcStair,1>::Construct )
- , SchemaEntry("ifcstairflight",&STEP::ObjectHelper<IfcStairFlight,4>::Construct )
- , SchemaEntry("ifcstairflighttype",&STEP::ObjectHelper<IfcStairFlightType,1>::Construct )
- , SchemaEntry("ifcstructuralactivity",&STEP::ObjectHelper<IfcStructuralActivity,2>::Construct )
- , SchemaEntry("ifcstructuralaction",&STEP::ObjectHelper<IfcStructuralAction,2>::Construct )
- , SchemaEntry("ifcstructuralanalysismodel",&STEP::ObjectHelper<IfcStructuralAnalysisModel,4>::Construct )
- , SchemaEntry("ifcstructuralitem",&STEP::ObjectHelper<IfcStructuralItem,0>::Construct )
- , SchemaEntry("ifcstructuralconnection",&STEP::ObjectHelper<IfcStructuralConnection,1>::Construct )
- , SchemaEntry("ifcstructuralcurveconnection",&STEP::ObjectHelper<IfcStructuralCurveConnection,0>::Construct )
- , SchemaEntry("ifcstructuralmember",&STEP::ObjectHelper<IfcStructuralMember,0>::Construct )
- , SchemaEntry("ifcstructuralcurvemember",&STEP::ObjectHelper<IfcStructuralCurveMember,1>::Construct )
- , SchemaEntry("ifcstructuralcurvemembervarying",&STEP::ObjectHelper<IfcStructuralCurveMemberVarying,0>::Construct )
- , SchemaEntry("ifcstructurallinearaction",&STEP::ObjectHelper<IfcStructuralLinearAction,1>::Construct )
- , SchemaEntry("ifcstructurallinearactionvarying",&STEP::ObjectHelper<IfcStructuralLinearActionVarying,2>::Construct )
- , SchemaEntry("ifcstructuralload",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadgroup",&STEP::ObjectHelper<IfcStructuralLoadGroup,5>::Construct )
- , SchemaEntry("ifcstructuralloadstatic",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadlinearforce",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadplanarforce",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadsingledisplacement",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadsingledisplacementdistortion",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadsingleforce",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadsingleforcewarping",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralloadtemperature",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralplanaraction",&STEP::ObjectHelper<IfcStructuralPlanarAction,1>::Construct )
- , SchemaEntry("ifcstructuralplanaractionvarying",&STEP::ObjectHelper<IfcStructuralPlanarActionVarying,2>::Construct )
- , SchemaEntry("ifcstructuralpointaction",&STEP::ObjectHelper<IfcStructuralPointAction,0>::Construct )
- , SchemaEntry("ifcstructuralpointconnection",&STEP::ObjectHelper<IfcStructuralPointConnection,0>::Construct )
- , SchemaEntry("ifcstructuralreaction",&STEP::ObjectHelper<IfcStructuralReaction,0>::Construct )
- , SchemaEntry("ifcstructuralpointreaction",&STEP::ObjectHelper<IfcStructuralPointReaction,0>::Construct )
- , SchemaEntry("ifcstructuralprofileproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralresultgroup",&STEP::ObjectHelper<IfcStructuralResultGroup,3>::Construct )
- , SchemaEntry("ifcstructuralsteelprofileproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcstructuralsurfaceconnection",&STEP::ObjectHelper<IfcStructuralSurfaceConnection,0>::Construct )
- , SchemaEntry("ifcstructuralsurfacemember",&STEP::ObjectHelper<IfcStructuralSurfaceMember,2>::Construct )
- , SchemaEntry("ifcstructuralsurfacemembervarying",&STEP::ObjectHelper<IfcStructuralSurfaceMemberVarying,2>::Construct )
- , SchemaEntry("ifcstructureddimensioncallout",&STEP::ObjectHelper<IfcStructuredDimensionCallout,0>::Construct )
- , SchemaEntry("ifcstylemodel",&STEP::ObjectHelper<IfcStyleModel,0>::Construct )
- , SchemaEntry("ifcstyledrepresentation",&STEP::ObjectHelper<IfcStyledRepresentation,0>::Construct )
- , SchemaEntry("ifcsubcontractresource",&STEP::ObjectHelper<IfcSubContractResource,2>::Construct )
- , SchemaEntry("ifcsubedge",&STEP::ObjectHelper<IfcSubedge,1>::Construct )
- , SchemaEntry("ifcsurfacecurvesweptareasolid",&STEP::ObjectHelper<IfcSurfaceCurveSweptAreaSolid,4>::Construct )
- , SchemaEntry("ifcsweptsurface",&STEP::ObjectHelper<IfcSweptSurface,2>::Construct )
- , SchemaEntry("ifcsurfaceoflinearextrusion",&STEP::ObjectHelper<IfcSurfaceOfLinearExtrusion,2>::Construct )
- , SchemaEntry("ifcsurfaceofrevolution",&STEP::ObjectHelper<IfcSurfaceOfRevolution,1>::Construct )
- , SchemaEntry("ifcsurfacestyle",&STEP::ObjectHelper<IfcSurfaceStyle,2>::Construct )
- , SchemaEntry("ifcsurfacestylelighting",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsurfacestylerefraction",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsurfacestyleshading",&STEP::ObjectHelper<IfcSurfaceStyleShading,1>::Construct )
- , SchemaEntry("ifcsurfacestylerendering",&STEP::ObjectHelper<IfcSurfaceStyleRendering,8>::Construct )
- , SchemaEntry("ifcsurfacestylewithtextures",&STEP::ObjectHelper<IfcSurfaceStyleWithTextures,1>::Construct )
- , SchemaEntry("ifcsweptdisksolid",&STEP::ObjectHelper<IfcSweptDiskSolid,5>::Construct )
- , SchemaEntry("ifcswitchingdevicetype",&STEP::ObjectHelper<IfcSwitchingDeviceType,1>::Construct )
- , SchemaEntry("ifcsymbolstyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcsystemfurnitureelementtype",&STEP::ObjectHelper<IfcSystemFurnitureElementType,0>::Construct )
- , SchemaEntry("ifctshapeprofiledef",&STEP::ObjectHelper<IfcTShapeProfileDef,10>::Construct )
- , SchemaEntry("ifctable",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctablerow",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctanktype",&STEP::ObjectHelper<IfcTankType,1>::Construct )
- , SchemaEntry("ifctelecomaddress",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctendon",&STEP::ObjectHelper<IfcTendon,8>::Construct )
- , SchemaEntry("ifctendonanchor",&STEP::ObjectHelper<IfcTendonAnchor,0>::Construct )
- , SchemaEntry("ifctextliteral",&STEP::ObjectHelper<IfcTextLiteral,3>::Construct )
- , SchemaEntry("ifctextliteralwithextent",&STEP::ObjectHelper<IfcTextLiteralWithExtent,2>::Construct )
- , SchemaEntry("ifctextstyle",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctextstylefontmodel",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctextstylefordefinedfont",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctextstyletextmodel",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctextstylewithboxcharacteristics",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctexturecoordinate",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctexturecoordinategenerator",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctexturemap",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctexturevertex",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcthermalmaterialproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctimeseriesreferencerelationship",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctimeseriesschedule",&STEP::ObjectHelper<IfcTimeSeriesSchedule,3>::Construct )
- , SchemaEntry("ifctimeseriesvalue",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifctopologyrepresentation",&STEP::ObjectHelper<IfcTopologyRepresentation,0>::Construct )
- , SchemaEntry("ifctransformertype",&STEP::ObjectHelper<IfcTransformerType,1>::Construct )
- , SchemaEntry("ifctransportelement",&STEP::ObjectHelper<IfcTransportElement,3>::Construct )
- , SchemaEntry("ifctransportelementtype",&STEP::ObjectHelper<IfcTransportElementType,1>::Construct )
- , SchemaEntry("ifctrapeziumprofiledef",&STEP::ObjectHelper<IfcTrapeziumProfileDef,4>::Construct )
- , SchemaEntry("ifctrimmedcurve",&STEP::ObjectHelper<IfcTrimmedCurve,5>::Construct )
- , SchemaEntry("ifctubebundletype",&STEP::ObjectHelper<IfcTubeBundleType,1>::Construct )
- , SchemaEntry("ifctwodirectionrepeatfactor",&STEP::ObjectHelper<IfcTwoDirectionRepeatFactor,1>::Construct )
- , SchemaEntry("ifcushapeprofiledef",&STEP::ObjectHelper<IfcUShapeProfileDef,8>::Construct )
- , SchemaEntry("ifcunitassignment",&STEP::ObjectHelper<IfcUnitAssignment,1>::Construct )
- , SchemaEntry("ifcunitaryequipmenttype",&STEP::ObjectHelper<IfcUnitaryEquipmentType,1>::Construct )
- , SchemaEntry("ifcvalvetype",&STEP::ObjectHelper<IfcValveType,1>::Construct )
- , SchemaEntry("ifcvector",&STEP::ObjectHelper<IfcVector,2>::Construct )
- , SchemaEntry("ifcvertex",&STEP::ObjectHelper<IfcVertex,0>::Construct )
- , SchemaEntry("ifcvertexbasedtexturemap",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcvertexloop",&STEP::ObjectHelper<IfcVertexLoop,1>::Construct )
- , SchemaEntry("ifcvertexpoint",&STEP::ObjectHelper<IfcVertexPoint,1>::Construct )
- , SchemaEntry("ifcvibrationisolatortype",&STEP::ObjectHelper<IfcVibrationIsolatorType,1>::Construct )
- , SchemaEntry("ifcvirtualelement",&STEP::ObjectHelper<IfcVirtualElement,0>::Construct )
- , SchemaEntry("ifcvirtualgridintersection",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcwall",&STEP::ObjectHelper<IfcWall,0>::Construct )
- , SchemaEntry("ifcwallstandardcase",&STEP::ObjectHelper<IfcWallStandardCase,0>::Construct )
- , SchemaEntry("ifcwalltype",&STEP::ObjectHelper<IfcWallType,1>::Construct )
- , SchemaEntry("ifcwasteterminaltype",&STEP::ObjectHelper<IfcWasteTerminalType,1>::Construct )
- , SchemaEntry("ifcwaterproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcwindow",&STEP::ObjectHelper<IfcWindow,2>::Construct )
- , SchemaEntry("ifcwindowliningproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcwindowpanelproperties",&STEP::ObjectHelper<NotImplemented,0>::Construct )
- , SchemaEntry("ifcwindowstyle",&STEP::ObjectHelper<IfcWindowStyle,4>::Construct )
- , SchemaEntry("ifcworkcontrol",&STEP::ObjectHelper<IfcWorkControl,10>::Construct )
- , SchemaEntry("ifcworkplan",&STEP::ObjectHelper<IfcWorkPlan,0>::Construct )
- , SchemaEntry("ifcworkschedule",&STEP::ObjectHelper<IfcWorkSchedule,0>::Construct )
- , SchemaEntry("ifczshapeprofiledef",&STEP::ObjectHelper<IfcZShapeProfileDef,6>::Construct )
- , SchemaEntry("ifczone",&STEP::ObjectHelper<IfcZone,0>::Construct )
- };
- }
- // -----------------------------------------------------------------------------------------------------------
- void IFC::GetSchema(EXPRESS::ConversionSchema& out)
- {
- out = EXPRESS::ConversionSchema(schema_raw);
- }
- namespace STEP {
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<NotImplemented>(const STEP::DB& db, const LIST& params, NotImplemented* in)
- {
- return 0;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRepresentationItem>(const DB& db, const LIST& params, IfcRepresentationItem* in)
- {
- size_t base = 0;
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGeometricRepresentationItem>(const DB& db, const LIST& params, IfcGeometricRepresentationItem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCurve>(const DB& db, const LIST& params, IfcCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBoundedCurve>(const DB& db, const LIST& params, IfcBoundedCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCurve*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCompositeCurve>(const DB& db, const LIST& params, IfcCompositeCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBoundedCurve*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcCompositeCurve"); } do { // convert the 'Segments' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCompositeCurve,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Segments, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcCompositeCurve to be a `LIST [1:?] OF IfcCompositeCurveSegment`")); }
- } while(0);
- do { // convert the 'SelfIntersect' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCompositeCurve,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->SelfIntersect, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcCompositeCurve to be a `LOGICAL`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<Ifc2DCompositeCurve>(const DB& db, const LIST& params, Ifc2DCompositeCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCompositeCurve*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRoot>(const DB& db, const LIST& params, IfcRoot* in)
- {
- size_t base = 0;
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcRoot"); } do { // convert the 'GlobalId' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRoot,4>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->GlobalId, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcRoot to be a `IfcGloballyUniqueId`")); }
- } while(0);
- do { // convert the 'OwnerHistory' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRoot,4>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->OwnerHistory, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcRoot to be a `IfcOwnerHistory`")); }
- } while(0);
- do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRoot,4>::aux_is_derived[2]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcRoot to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'Description' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRoot,4>::aux_is_derived[3]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Description, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcRoot to be a `IfcText`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcObjectDefinition>(const DB& db, const LIST& params, IfcObjectDefinition* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRoot*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcObjectDefinition"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcObject>(const DB& db, const LIST& params, IfcObject* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObjectDefinition*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcObject"); } do { // convert the 'ObjectType' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcObject,1>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ObjectType, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcObject to be a `IfcLabel`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcControl>(const DB& db, const LIST& params, IfcControl* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcActionRequest>(const DB& db, const LIST& params, IfcActionRequest* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcActor>(const DB& db, const LIST& params, IfcActor* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTypeObject>(const DB& db, const LIST& params, IfcTypeObject* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObjectDefinition*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTypeProduct>(const DB& db, const LIST& params, IfcTypeProduct* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTypeObject*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElementType>(const DB& db, const LIST& params, IfcElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTypeProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionElementType>(const DB& db, const LIST& params, IfcDistributionElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionControlElementType>(const DB& db, const LIST& params, IfcDistributionControlElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcActuatorType>(const DB& db, const LIST& params, IfcActuatorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionControlElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionFlowElementType>(const DB& db, const LIST& params, IfcDistributionFlowElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowControllerType>(const DB& db, const LIST& params, IfcFlowControllerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAirTerminalBoxType>(const DB& db, const LIST& params, IfcAirTerminalBoxType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowTerminalType>(const DB& db, const LIST& params, IfcFlowTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAirTerminalType>(const DB& db, const LIST& params, IfcAirTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEnergyConversionDeviceType>(const DB& db, const LIST& params, IfcEnergyConversionDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAirToAirHeatRecoveryType>(const DB& db, const LIST& params, IfcAirToAirHeatRecoveryType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAlarmType>(const DB& db, const LIST& params, IfcAlarmType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionControlElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDraughtingCallout>(const DB& db, const LIST& params, IfcDraughtingCallout* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDimensionCurveDirectedCallout>(const DB& db, const LIST& params, IfcDimensionCurveDirectedCallout* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDraughtingCallout*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAngularDimension>(const DB& db, const LIST& params, IfcAngularDimension* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDimensionCurveDirectedCallout*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProduct>(const DB& db, const LIST& params, IfcProduct* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- if (params.GetSize() < 7) { throw STEP::TypeError("expected 7 arguments to IfcProduct"); } do { // convert the 'ObjectPlacement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProduct,2>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ObjectPlacement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcProduct to be a `IfcObjectPlacement`")); }
- } while(0);
- do { // convert the 'Representation' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProduct,2>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Representation, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 6 to IfcProduct to be a `IfcProductRepresentation`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotation>(const DB& db, const LIST& params, IfcAnnotation* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- if (params.GetSize() < 7) { throw STEP::TypeError("expected 7 arguments to IfcAnnotation"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStyledItem>(const DB& db, const LIST& params, IfcStyledItem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentationItem*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcStyledItem"); } do { // convert the 'Item' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcStyledItem,3>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Item, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcStyledItem to be a `IfcRepresentationItem`")); }
- } while(0);
- do { // convert the 'Styles' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcStyledItem,3>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->Styles, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcStyledItem to be a `SET [1:?] OF IfcPresentationStyleAssignment`")); }
- } while(0);
- do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcStyledItem,3>::aux_is_derived[2]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcStyledItem to be a `IfcLabel`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationOccurrence>(const DB& db, const LIST& params, IfcAnnotationOccurrence* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStyledItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationCurveOccurrence>(const DB& db, const LIST& params, IfcAnnotationCurveOccurrence* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationFillArea>(const DB& db, const LIST& params, IfcAnnotationFillArea* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationFillAreaOccurrence>(const DB& db, const LIST& params, IfcAnnotationFillAreaOccurrence* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationSurface>(const DB& db, const LIST& params, IfcAnnotationSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationSurfaceOccurrence>(const DB& db, const LIST& params, IfcAnnotationSurfaceOccurrence* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationSymbolOccurrence>(const DB& db, const LIST& params, IfcAnnotationSymbolOccurrence* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAnnotationTextOccurrence>(const DB& db, const LIST& params, IfcAnnotationTextOccurrence* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProfileDef>(const DB& db, const LIST& params, IfcProfileDef* in)
- {
- size_t base = 0;
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcProfileDef"); } do { // convert the 'ProfileType' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProfileDef,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->ProfileType, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcProfileDef to be a `IfcProfileTypeEnum`")); }
- } while(0);
- do { // convert the 'ProfileName' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProfileDef,2>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ProfileName, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcProfileDef to be a `IfcLabel`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcArbitraryClosedProfileDef>(const DB& db, const LIST& params, IfcArbitraryClosedProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProfileDef*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcArbitraryClosedProfileDef"); } do { // convert the 'OuterCurve' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcArbitraryClosedProfileDef,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->OuterCurve, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcArbitraryClosedProfileDef to be a `IfcCurve`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcArbitraryOpenProfileDef>(const DB& db, const LIST& params, IfcArbitraryOpenProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProfileDef*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcArbitraryOpenProfileDef"); } do { // convert the 'Curve' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcArbitraryOpenProfileDef,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Curve, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcArbitraryOpenProfileDef to be a `IfcBoundedCurve`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcArbitraryProfileDefWithVoids>(const DB& db, const LIST& params, IfcArbitraryProfileDefWithVoids* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcArbitraryClosedProfileDef*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcArbitraryProfileDefWithVoids"); } do { // convert the 'InnerCurves' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->InnerCurves, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcArbitraryProfileDefWithVoids to be a `SET [1:?] OF IfcCurve`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGroup>(const DB& db, const LIST& params, IfcGroup* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAsset>(const DB& db, const LIST& params, IfcAsset* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcParameterizedProfileDef>(const DB& db, const LIST& params, IfcParameterizedProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProfileDef*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcParameterizedProfileDef"); } do { // convert the 'Position' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcParameterizedProfileDef,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Position, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcParameterizedProfileDef to be a `IfcAxis2Placement2D`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcIShapeProfileDef>(const DB& db, const LIST& params, IfcIShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- if (params.GetSize() < 8) { throw STEP::TypeError("expected 8 arguments to IfcIShapeProfileDef"); } do { // convert the 'OverallWidth' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcIShapeProfileDef,5>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->OverallWidth, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcIShapeProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'OverallDepth' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcIShapeProfileDef,5>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->OverallDepth, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcIShapeProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'WebThickness' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcIShapeProfileDef,5>::aux_is_derived[2]=true; break; }
- try { GenericConvert( in->WebThickness, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcIShapeProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'FlangeThickness' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcIShapeProfileDef,5>::aux_is_derived[3]=true; break; }
- try { GenericConvert( in->FlangeThickness, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 6 to IfcIShapeProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'FilletRadius' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcIShapeProfileDef,5>::aux_is_derived[4]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->FilletRadius, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 7 to IfcIShapeProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAsymmetricIShapeProfileDef>(const DB& db, const LIST& params, IfcAsymmetricIShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcIShapeProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPlacement>(const DB& db, const LIST& params, IfcPlacement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcPlacement"); } do { // convert the 'Location' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcPlacement,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Location, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcPlacement to be a `IfcCartesianPoint`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAxis1Placement>(const DB& db, const LIST& params, IfcAxis1Placement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPlacement*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcAxis1Placement"); } do { // convert the 'Axis' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Axis, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcAxis1Placement to be a `IfcDirection`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAxis2Placement2D>(const DB& db, const LIST& params, IfcAxis2Placement2D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPlacement*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcAxis2Placement2D"); } do { // convert the 'RefDirection' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RefDirection, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcAxis2Placement2D to be a `IfcDirection`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcAxis2Placement3D>(const DB& db, const LIST& params, IfcAxis2Placement3D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPlacement*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcAxis2Placement3D"); } do { // convert the 'Axis' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Axis, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcAxis2Placement3D to be a `IfcDirection`")); }
- } while(0);
- do { // convert the 'RefDirection' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RefDirection, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcAxis2Placement3D to be a `IfcDirection`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBSplineCurve>(const DB& db, const LIST& params, IfcBSplineCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBoundedCurve*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcBSplineCurve"); } do { // convert the 'Degree' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBSplineCurve,5>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Degree, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcBSplineCurve to be a `INTEGER`")); }
- } while(0);
- do { // convert the 'ControlPointsList' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBSplineCurve,5>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->ControlPointsList, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcBSplineCurve to be a `LIST [2:?] OF IfcCartesianPoint`")); }
- } while(0);
- do { // convert the 'CurveForm' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBSplineCurve,5>::aux_is_derived[2]=true; break; }
- try { GenericConvert( in->CurveForm, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcBSplineCurve to be a `IfcBSplineCurveForm`")); }
- } while(0);
- do { // convert the 'ClosedCurve' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBSplineCurve,5>::aux_is_derived[3]=true; break; }
- try { GenericConvert( in->ClosedCurve, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcBSplineCurve to be a `LOGICAL`")); }
- } while(0);
- do { // convert the 'SelfIntersect' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBSplineCurve,5>::aux_is_derived[4]=true; break; }
- try { GenericConvert( in->SelfIntersect, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcBSplineCurve to be a `LOGICAL`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElement>(const DB& db, const LIST& params, IfcElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- if (params.GetSize() < 8) { throw STEP::TypeError("expected 8 arguments to IfcElement"); } do { // convert the 'Tag' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcElement,1>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Tag, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 7 to IfcElement to be a `IfcIdentifier`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingElement>(const DB& db, const LIST& params, IfcBuildingElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- if (params.GetSize() < 8) { throw STEP::TypeError("expected 8 arguments to IfcBuildingElement"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBeam>(const DB& db, const LIST& params, IfcBeam* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingElementType>(const DB& db, const LIST& params, IfcBuildingElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBeamType>(const DB& db, const LIST& params, IfcBeamType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBezierCurve>(const DB& db, const LIST& params, IfcBezierCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBSplineCurve*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCsgPrimitive3D>(const DB& db, const LIST& params, IfcCsgPrimitive3D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBlock>(const DB& db, const LIST& params, IfcBlock* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCsgPrimitive3D*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBoilerType>(const DB& db, const LIST& params, IfcBoilerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBooleanResult>(const DB& db, const LIST& params, IfcBooleanResult* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcBooleanResult"); } do { // convert the 'Operator' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBooleanResult,3>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Operator, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcBooleanResult to be a `IfcBooleanOperator`")); }
- } while(0);
- do { // convert the 'FirstOperand' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBooleanResult,3>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->FirstOperand, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcBooleanResult to be a `IfcBooleanOperand`")); }
- } while(0);
- do { // convert the 'SecondOperand' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcBooleanResult,3>::aux_is_derived[2]=true; break; }
- try { GenericConvert( in->SecondOperand, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcBooleanResult to be a `IfcBooleanOperand`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBooleanClippingResult>(const DB& db, const LIST& params, IfcBooleanClippingResult* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBooleanResult*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcBooleanClippingResult"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurface>(const DB& db, const LIST& params, IfcSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBoundedSurface>(const DB& db, const LIST& params, IfcBoundedSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSurface*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBoundingBox>(const DB& db, const LIST& params, IfcBoundingBox* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcBoundingBox"); } do { // convert the 'Corner' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Corner, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcBoundingBox to be a `IfcCartesianPoint`")); }
- } while(0);
- do { // convert the 'XDim' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->XDim, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcBoundingBox to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'YDim' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->YDim, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcBoundingBox to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'ZDim' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ZDim, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcBoundingBox to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcHalfSpaceSolid>(const DB& db, const LIST& params, IfcHalfSpaceSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcHalfSpaceSolid"); } do { // convert the 'BaseSurface' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcHalfSpaceSolid,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->BaseSurface, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcHalfSpaceSolid to be a `IfcSurface`")); }
- } while(0);
- do { // convert the 'AgreementFlag' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcHalfSpaceSolid,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->AgreementFlag, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcHalfSpaceSolid to be a `BOOLEAN`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBoxedHalfSpace>(const DB& db, const LIST& params, IfcBoxedHalfSpace* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcHalfSpaceSolid*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSpatialStructureElement>(const DB& db, const LIST& params, IfcSpatialStructureElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- if (params.GetSize() < 9) { throw STEP::TypeError("expected 9 arguments to IfcSpatialStructureElement"); } do { // convert the 'LongName' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcSpatialStructureElement,2>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->LongName, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 7 to IfcSpatialStructureElement to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'CompositionType' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcSpatialStructureElement,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->CompositionType, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 8 to IfcSpatialStructureElement to be a `IfcElementCompositionEnum`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuilding>(const DB& db, const LIST& params, IfcBuilding* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSpatialStructureElement*>(in));
- if (params.GetSize() < 12) { throw STEP::TypeError("expected 12 arguments to IfcBuilding"); } do { // convert the 'ElevationOfRefHeight' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ElevationOfRefHeight, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 9 to IfcBuilding to be a `IfcLengthMeasure`")); }
- } while(0);
- do { // convert the 'ElevationOfTerrain' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ElevationOfTerrain, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 10 to IfcBuilding to be a `IfcLengthMeasure`")); }
- } while(0);
- do { // convert the 'BuildingAddress' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->BuildingAddress, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 11 to IfcBuilding to be a `IfcPostalAddress`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingElementComponent>(const DB& db, const LIST& params, IfcBuildingElementComponent* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingElementPart>(const DB& db, const LIST& params, IfcBuildingElementPart* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementComponent*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingElementProxy>(const DB& db, const LIST& params, IfcBuildingElementProxy* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingElementProxyType>(const DB& db, const LIST& params, IfcBuildingElementProxyType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcBuildingStorey>(const DB& db, const LIST& params, IfcBuildingStorey* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSpatialStructureElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCShapeProfileDef>(const DB& db, const LIST& params, IfcCShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowFittingType>(const DB& db, const LIST& params, IfcFlowFittingType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCableCarrierFittingType>(const DB& db, const LIST& params, IfcCableCarrierFittingType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowFittingType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowSegmentType>(const DB& db, const LIST& params, IfcFlowSegmentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCableCarrierSegmentType>(const DB& db, const LIST& params, IfcCableCarrierSegmentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowSegmentType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCableSegmentType>(const DB& db, const LIST& params, IfcCableSegmentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowSegmentType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPoint>(const DB& db, const LIST& params, IfcPoint* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCartesianPoint>(const DB& db, const LIST& params, IfcCartesianPoint* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPoint*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcCartesianPoint"); } do { // convert the 'Coordinates' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Coordinates, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcCartesianPoint to be a `LIST [1:3] OF IfcLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCartesianTransformationOperator>(const DB& db, const LIST& params, IfcCartesianTransformationOperator* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcCartesianTransformationOperator"); } do { // convert the 'Axis1' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCartesianTransformationOperator,4>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Axis1, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcCartesianTransformationOperator to be a `IfcDirection`")); }
- } while(0);
- do { // convert the 'Axis2' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCartesianTransformationOperator,4>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Axis2, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcCartesianTransformationOperator to be a `IfcDirection`")); }
- } while(0);
- do { // convert the 'LocalOrigin' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCartesianTransformationOperator,4>::aux_is_derived[2]=true; break; }
- try { GenericConvert( in->LocalOrigin, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcCartesianTransformationOperator to be a `IfcCartesianPoint`")); }
- } while(0);
- do { // convert the 'Scale' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCartesianTransformationOperator,4>::aux_is_derived[3]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Scale, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcCartesianTransformationOperator to be a `REAL`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCartesianTransformationOperator2D>(const DB& db, const LIST& params, IfcCartesianTransformationOperator2D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCartesianTransformationOperator*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCartesianTransformationOperator2DnonUniform>(const DB& db, const LIST& params, IfcCartesianTransformationOperator2DnonUniform* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCartesianTransformationOperator2D*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCartesianTransformationOperator3D>(const DB& db, const LIST& params, IfcCartesianTransformationOperator3D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCartesianTransformationOperator*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcCartesianTransformationOperator3D"); } do { // convert the 'Axis3' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCartesianTransformationOperator3D,1>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Axis3, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcCartesianTransformationOperator3D to be a `IfcDirection`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCartesianTransformationOperator3DnonUniform>(const DB& db, const LIST& params, IfcCartesianTransformationOperator3DnonUniform* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCartesianTransformationOperator3D*>(in));
- if (params.GetSize() < 7) { throw STEP::TypeError("expected 7 arguments to IfcCartesianTransformationOperator3DnonUniform"); } do { // convert the 'Scale2' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Scale2, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcCartesianTransformationOperator3DnonUniform to be a `REAL`")); }
- } while(0);
- do { // convert the 'Scale3' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Scale3, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 6 to IfcCartesianTransformationOperator3DnonUniform to be a `REAL`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCenterLineProfileDef>(const DB& db, const LIST& params, IfcCenterLineProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcArbitraryOpenProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFeatureElement>(const DB& db, const LIST& params, IfcFeatureElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- if (params.GetSize() < 8) { throw STEP::TypeError("expected 8 arguments to IfcFeatureElement"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFeatureElementSubtraction>(const DB& db, const LIST& params, IfcFeatureElementSubtraction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFeatureElement*>(in));
- if (params.GetSize() < 8) { throw STEP::TypeError("expected 8 arguments to IfcFeatureElementSubtraction"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEdgeFeature>(const DB& db, const LIST& params, IfcEdgeFeature* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFeatureElementSubtraction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcChamferEdgeFeature>(const DB& db, const LIST& params, IfcChamferEdgeFeature* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEdgeFeature*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcChillerType>(const DB& db, const LIST& params, IfcChillerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConic>(const DB& db, const LIST& params, IfcConic* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCurve*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcConic"); } do { // convert the 'Position' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcConic,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Position, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcConic to be a `IfcAxis2Placement`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCircle>(const DB& db, const LIST& params, IfcCircle* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConic*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcCircle"); } do { // convert the 'Radius' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Radius, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcCircle to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCircleProfileDef>(const DB& db, const LIST& params, IfcCircleProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcCircleProfileDef"); } do { // convert the 'Radius' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcCircleProfileDef,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Radius, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcCircleProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCircleHollowProfileDef>(const DB& db, const LIST& params, IfcCircleHollowProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCircleProfileDef*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcCircleHollowProfileDef"); } do { // convert the 'WallThickness' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->WallThickness, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcCircleHollowProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTopologicalRepresentationItem>(const DB& db, const LIST& params, IfcTopologicalRepresentationItem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConnectedFaceSet>(const DB& db, const LIST& params, IfcConnectedFaceSet* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcConnectedFaceSet"); } do { // convert the 'CfsFaces' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcConnectedFaceSet,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->CfsFaces, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcConnectedFaceSet to be a `SET [1:?] OF IfcFace`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcClosedShell>(const DB& db, const LIST& params, IfcClosedShell* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConnectedFaceSet*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcClosedShell"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCoilType>(const DB& db, const LIST& params, IfcCoilType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcColourSpecification>(const DB& db, const LIST& params, IfcColourSpecification* in)
- {
- size_t base = 0;
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcColourSpecification"); } do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcColourSpecification,1>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcColourSpecification to be a `IfcLabel`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcColourRgb>(const DB& db, const LIST& params, IfcColourRgb* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcColourSpecification*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcColourRgb"); } do { // convert the 'Red' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Red, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcColourRgb to be a `IfcNormalisedRatioMeasure`")); }
- } while(0);
- do { // convert the 'Green' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Green, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcColourRgb to be a `IfcNormalisedRatioMeasure`")); }
- } while(0);
- do { // convert the 'Blue' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Blue, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcColourRgb to be a `IfcNormalisedRatioMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcColumn>(const DB& db, const LIST& params, IfcColumn* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcColumnType>(const DB& db, const LIST& params, IfcColumnType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProperty>(const DB& db, const LIST& params, IfcProperty* in)
- {
- size_t base = 0;
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcProperty"); } do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProperty,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcProperty to be a `IfcIdentifier`")); }
- } while(0);
- do { // convert the 'Description' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProperty,2>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Description, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcProperty to be a `IfcText`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcComplexProperty>(const DB& db, const LIST& params, IfcComplexProperty* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProperty*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcComplexProperty"); } do { // convert the 'UsageName' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->UsageName, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcComplexProperty to be a `IfcIdentifier`")); }
- } while(0);
- do { // convert the 'HasProperties' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->HasProperties, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcComplexProperty to be a `SET [1:?] OF IfcProperty`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCompositeCurveSegment>(const DB& db, const LIST& params, IfcCompositeCurveSegment* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcCompositeCurveSegment"); } do { // convert the 'Transition' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Transition, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcCompositeCurveSegment to be a `IfcTransitionCode`")); }
- } while(0);
- do { // convert the 'SameSense' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->SameSense, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcCompositeCurveSegment to be a `BOOLEAN`")); }
- } while(0);
- do { // convert the 'ParentCurve' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ParentCurve, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcCompositeCurveSegment to be a `IfcCurve`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCompositeProfileDef>(const DB& db, const LIST& params, IfcCompositeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowMovingDeviceType>(const DB& db, const LIST& params, IfcFlowMovingDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCompressorType>(const DB& db, const LIST& params, IfcCompressorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowMovingDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCondenserType>(const DB& db, const LIST& params, IfcCondenserType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCondition>(const DB& db, const LIST& params, IfcCondition* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConditionCriterion>(const DB& db, const LIST& params, IfcConditionCriterion* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcResource>(const DB& db, const LIST& params, IfcResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConstructionResource>(const DB& db, const LIST& params, IfcConstructionResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConstructionEquipmentResource>(const DB& db, const LIST& params, IfcConstructionEquipmentResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConstructionResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConstructionMaterialResource>(const DB& db, const LIST& params, IfcConstructionMaterialResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConstructionResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConstructionProductResource>(const DB& db, const LIST& params, IfcConstructionProductResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConstructionResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcNamedUnit>(const DB& db, const LIST& params, IfcNamedUnit* in)
- {
- size_t base = 0;
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcNamedUnit"); } do { // convert the 'Dimensions' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcNamedUnit,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Dimensions, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcNamedUnit to be a `IfcDimensionalExponents`")); }
- } while(0);
- do { // convert the 'UnitType' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcNamedUnit,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->UnitType, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcNamedUnit to be a `IfcUnitEnum`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcContextDependentUnit>(const DB& db, const LIST& params, IfcContextDependentUnit* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcNamedUnit*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcControllerType>(const DB& db, const LIST& params, IfcControllerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionControlElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcConversionBasedUnit>(const DB& db, const LIST& params, IfcConversionBasedUnit* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcNamedUnit*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcConversionBasedUnit"); } do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcConversionBasedUnit to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'ConversionFactor' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ConversionFactor, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcConversionBasedUnit to be a `IfcMeasureWithUnit`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCooledBeamType>(const DB& db, const LIST& params, IfcCooledBeamType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCoolingTowerType>(const DB& db, const LIST& params, IfcCoolingTowerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCostItem>(const DB& db, const LIST& params, IfcCostItem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCostSchedule>(const DB& db, const LIST& params, IfcCostSchedule* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCovering>(const DB& db, const LIST& params, IfcCovering* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCoveringType>(const DB& db, const LIST& params, IfcCoveringType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCraneRailAShapeProfileDef>(const DB& db, const LIST& params, IfcCraneRailAShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCraneRailFShapeProfileDef>(const DB& db, const LIST& params, IfcCraneRailFShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCrewResource>(const DB& db, const LIST& params, IfcCrewResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConstructionResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSolidModel>(const DB& db, const LIST& params, IfcSolidModel* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCsgSolid>(const DB& db, const LIST& params, IfcCsgSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSolidModel*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCurtainWall>(const DB& db, const LIST& params, IfcCurtainWall* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCurtainWallType>(const DB& db, const LIST& params, IfcCurtainWallType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcCurveBoundedPlane>(const DB& db, const LIST& params, IfcCurveBoundedPlane* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBoundedSurface*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPresentationStyle>(const DB& db, const LIST& params, IfcPresentationStyle* in)
- {
- size_t base = 0;
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcPresentationStyle"); } do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcPresentationStyle,1>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcPresentationStyle to be a `IfcLabel`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDamperType>(const DB& db, const LIST& params, IfcDamperType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDefinedSymbol>(const DB& db, const LIST& params, IfcDefinedSymbol* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDerivedProfileDef>(const DB& db, const LIST& params, IfcDerivedProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDiameterDimension>(const DB& db, const LIST& params, IfcDiameterDimension* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDimensionCurveDirectedCallout*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDimensionCurve>(const DB& db, const LIST& params, IfcDimensionCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationCurveOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTerminatorSymbol>(const DB& db, const LIST& params, IfcTerminatorSymbol* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationSymbolOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDimensionCurveTerminator>(const DB& db, const LIST& params, IfcDimensionCurveTerminator* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTerminatorSymbol*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDirection>(const DB& db, const LIST& params, IfcDirection* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcDirection"); } do { // convert the 'DirectionRatios' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->DirectionRatios, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcDirection to be a `LIST [2:3] OF REAL`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElementComponent>(const DB& db, const LIST& params, IfcElementComponent* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDiscreteAccessory>(const DB& db, const LIST& params, IfcDiscreteAccessory* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementComponent*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElementComponentType>(const DB& db, const LIST& params, IfcElementComponentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDiscreteAccessoryType>(const DB& db, const LIST& params, IfcDiscreteAccessoryType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementComponentType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionElement>(const DB& db, const LIST& params, IfcDistributionElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionFlowElement>(const DB& db, const LIST& params, IfcDistributionFlowElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionChamberElement>(const DB& db, const LIST& params, IfcDistributionChamberElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionChamberElementType>(const DB& db, const LIST& params, IfcDistributionChamberElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionControlElement>(const DB& db, const LIST& params, IfcDistributionControlElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPort>(const DB& db, const LIST& params, IfcPort* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDistributionPort>(const DB& db, const LIST& params, IfcDistributionPort* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPort*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDoor>(const DB& db, const LIST& params, IfcDoor* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- if (params.GetSize() < 10) { throw STEP::TypeError("expected 10 arguments to IfcDoor"); } do { // convert the 'OverallHeight' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->OverallHeight, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 8 to IfcDoor to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'OverallWidth' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->OverallWidth, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 9 to IfcDoor to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertyDefinition>(const DB& db, const LIST& params, IfcPropertyDefinition* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRoot*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcPropertyDefinition"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertySetDefinition>(const DB& db, const LIST& params, IfcPropertySetDefinition* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPropertyDefinition*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcPropertySetDefinition"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDoorStyle>(const DB& db, const LIST& params, IfcDoorStyle* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTypeProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDuctFittingType>(const DB& db, const LIST& params, IfcDuctFittingType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowFittingType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDuctSegmentType>(const DB& db, const LIST& params, IfcDuctSegmentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowSegmentType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowTreatmentDeviceType>(const DB& db, const LIST& params, IfcFlowTreatmentDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcDuctSilencerType>(const DB& db, const LIST& params, IfcDuctSilencerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTreatmentDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEdge>(const DB& db, const LIST& params, IfcEdge* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEdgeCurve>(const DB& db, const LIST& params, IfcEdgeCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEdge*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLoop>(const DB& db, const LIST& params, IfcLoop* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEdgeLoop>(const DB& db, const LIST& params, IfcEdgeLoop* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLoop*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricApplianceType>(const DB& db, const LIST& params, IfcElectricApplianceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowController>(const DB& db, const LIST& params, IfcFlowController* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricDistributionPoint>(const DB& db, const LIST& params, IfcElectricDistributionPoint* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowController*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowStorageDeviceType>(const DB& db, const LIST& params, IfcFlowStorageDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricFlowStorageDeviceType>(const DB& db, const LIST& params, IfcElectricFlowStorageDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowStorageDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricGeneratorType>(const DB& db, const LIST& params, IfcElectricGeneratorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricHeaterType>(const DB& db, const LIST& params, IfcElectricHeaterType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricMotorType>(const DB& db, const LIST& params, IfcElectricMotorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricTimeControlType>(const DB& db, const LIST& params, IfcElectricTimeControlType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSystem>(const DB& db, const LIST& params, IfcSystem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricalCircuit>(const DB& db, const LIST& params, IfcElectricalCircuit* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSystem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElectricalElement>(const DB& db, const LIST& params, IfcElectricalElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElementAssembly>(const DB& db, const LIST& params, IfcElementAssembly* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElementQuantity>(const DB& db, const LIST& params, IfcElementQuantity* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPropertySetDefinition*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcElementQuantity"); } do { // convert the 'MethodOfMeasurement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->MethodOfMeasurement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcElementQuantity to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'Quantities' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Quantities, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcElementQuantity to be a `SET [1:?] OF IfcPhysicalQuantity`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcElementarySurface>(const DB& db, const LIST& params, IfcElementarySurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSurface*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcElementarySurface"); } do { // convert the 'Position' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcElementarySurface,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Position, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcElementarySurface to be a `IfcAxis2Placement3D`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEllipse>(const DB& db, const LIST& params, IfcEllipse* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConic*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcEllipse"); } do { // convert the 'SemiAxis1' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->SemiAxis1, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcEllipse to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'SemiAxis2' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->SemiAxis2, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcEllipse to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEllipseProfileDef>(const DB& db, const LIST& params, IfcEllipseProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEnergyConversionDevice>(const DB& db, const LIST& params, IfcEnergyConversionDevice* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEquipmentElement>(const DB& db, const LIST& params, IfcEquipmentElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEquipmentStandard>(const DB& db, const LIST& params, IfcEquipmentStandard* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEvaporativeCoolerType>(const DB& db, const LIST& params, IfcEvaporativeCoolerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcEvaporatorType>(const DB& db, const LIST& params, IfcEvaporatorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSweptAreaSolid>(const DB& db, const LIST& params, IfcSweptAreaSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSolidModel*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcSweptAreaSolid"); } do { // convert the 'SweptArea' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcSweptAreaSolid,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->SweptArea, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcSweptAreaSolid to be a `IfcProfileDef`")); }
- } while(0);
- do { // convert the 'Position' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcSweptAreaSolid,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->Position, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcSweptAreaSolid to be a `IfcAxis2Placement3D`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcExtrudedAreaSolid>(const DB& db, const LIST& params, IfcExtrudedAreaSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSweptAreaSolid*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcExtrudedAreaSolid"); } do { // convert the 'ExtrudedDirection' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ExtrudedDirection, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcExtrudedAreaSolid to be a `IfcDirection`")); }
- } while(0);
- do { // convert the 'Depth' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Depth, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcExtrudedAreaSolid to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFace>(const DB& db, const LIST& params, IfcFace* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcFace"); } do { // convert the 'Bounds' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcFace,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Bounds, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcFace to be a `SET [1:?] OF IfcFaceBound`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFaceBasedSurfaceModel>(const DB& db, const LIST& params, IfcFaceBasedSurfaceModel* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcFaceBasedSurfaceModel"); } do { // convert the 'FbsmFaces' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->FbsmFaces, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcFaceBasedSurfaceModel to be a `SET [1:?] OF IfcConnectedFaceSet`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFaceBound>(const DB& db, const LIST& params, IfcFaceBound* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcFaceBound"); } do { // convert the 'Bound' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcFaceBound,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Bound, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcFaceBound to be a `IfcLoop`")); }
- } while(0);
- do { // convert the 'Orientation' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcFaceBound,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->Orientation, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcFaceBound to be a `BOOLEAN`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFaceOuterBound>(const DB& db, const LIST& params, IfcFaceOuterBound* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFaceBound*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcFaceOuterBound"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFaceSurface>(const DB& db, const LIST& params, IfcFaceSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFace*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcManifoldSolidBrep>(const DB& db, const LIST& params, IfcManifoldSolidBrep* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSolidModel*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcManifoldSolidBrep"); } do { // convert the 'Outer' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcManifoldSolidBrep,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->Outer, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcManifoldSolidBrep to be a `IfcClosedShell`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFacetedBrep>(const DB& db, const LIST& params, IfcFacetedBrep* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcManifoldSolidBrep*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFacetedBrepWithVoids>(const DB& db, const LIST& params, IfcFacetedBrepWithVoids* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcManifoldSolidBrep*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFanType>(const DB& db, const LIST& params, IfcFanType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowMovingDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFastener>(const DB& db, const LIST& params, IfcFastener* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementComponent*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFastenerType>(const DB& db, const LIST& params, IfcFastenerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementComponentType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFeatureElementAddition>(const DB& db, const LIST& params, IfcFeatureElementAddition* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFeatureElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFillAreaStyleHatching>(const DB& db, const LIST& params, IfcFillAreaStyleHatching* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFillAreaStyleTileSymbolWithStyle>(const DB& db, const LIST& params, IfcFillAreaStyleTileSymbolWithStyle* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFillAreaStyleTiles>(const DB& db, const LIST& params, IfcFillAreaStyleTiles* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFilterType>(const DB& db, const LIST& params, IfcFilterType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTreatmentDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFireSuppressionTerminalType>(const DB& db, const LIST& params, IfcFireSuppressionTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowFitting>(const DB& db, const LIST& params, IfcFlowFitting* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowInstrumentType>(const DB& db, const LIST& params, IfcFlowInstrumentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionControlElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowMeterType>(const DB& db, const LIST& params, IfcFlowMeterType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowMovingDevice>(const DB& db, const LIST& params, IfcFlowMovingDevice* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowSegment>(const DB& db, const LIST& params, IfcFlowSegment* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowStorageDevice>(const DB& db, const LIST& params, IfcFlowStorageDevice* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowTerminal>(const DB& db, const LIST& params, IfcFlowTerminal* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFlowTreatmentDevice>(const DB& db, const LIST& params, IfcFlowTreatmentDevice* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionFlowElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFooting>(const DB& db, const LIST& params, IfcFooting* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFurnishingElement>(const DB& db, const LIST& params, IfcFurnishingElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFurnishingElementType>(const DB& db, const LIST& params, IfcFurnishingElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFurnitureStandard>(const DB& db, const LIST& params, IfcFurnitureStandard* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcFurnitureType>(const DB& db, const LIST& params, IfcFurnitureType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFurnishingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGasTerminalType>(const DB& db, const LIST& params, IfcGasTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGeometricSet>(const DB& db, const LIST& params, IfcGeometricSet* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGeometricCurveSet>(const DB& db, const LIST& params, IfcGeometricCurveSet* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricSet*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRepresentationContext>(const DB& db, const LIST& params, IfcRepresentationContext* in)
- {
- size_t base = 0;
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcRepresentationContext"); } do { // convert the 'ContextIdentifier' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRepresentationContext,2>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ContextIdentifier, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcRepresentationContext to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'ContextType' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRepresentationContext,2>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ContextType, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcRepresentationContext to be a `IfcLabel`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGeometricRepresentationContext>(const DB& db, const LIST& params, IfcGeometricRepresentationContext* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentationContext*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcGeometricRepresentationContext"); } do { // convert the 'CoordinateSpaceDimension' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcGeometricRepresentationContext,4>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->CoordinateSpaceDimension, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcGeometricRepresentationContext to be a `IfcDimensionCount`")); }
- } while(0);
- do { // convert the 'Precision' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcGeometricRepresentationContext,4>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Precision, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcGeometricRepresentationContext to be a `REAL`")); }
- } while(0);
- do { // convert the 'WorldCoordinateSystem' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcGeometricRepresentationContext,4>::aux_is_derived[2]=true; break; }
- try { GenericConvert( in->WorldCoordinateSystem, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcGeometricRepresentationContext to be a `IfcAxis2Placement`")); }
- } while(0);
- do { // convert the 'TrueNorth' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcGeometricRepresentationContext,4>::aux_is_derived[3]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->TrueNorth, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcGeometricRepresentationContext to be a `IfcDirection`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGeometricRepresentationSubContext>(const DB& db, const LIST& params, IfcGeometricRepresentationSubContext* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationContext*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGrid>(const DB& db, const LIST& params, IfcGrid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcObjectPlacement>(const DB& db, const LIST& params, IfcObjectPlacement* in)
- {
- size_t base = 0;
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcGridPlacement>(const DB& db, const LIST& params, IfcGridPlacement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObjectPlacement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcHeatExchangerType>(const DB& db, const LIST& params, IfcHeatExchangerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcHumidifierType>(const DB& db, const LIST& params, IfcHumidifierType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcInventory>(const DB& db, const LIST& params, IfcInventory* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcJunctionBoxType>(const DB& db, const LIST& params, IfcJunctionBoxType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowFittingType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLShapeProfileDef>(const DB& db, const LIST& params, IfcLShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLaborResource>(const DB& db, const LIST& params, IfcLaborResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConstructionResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLampType>(const DB& db, const LIST& params, IfcLampType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightFixtureType>(const DB& db, const LIST& params, IfcLightFixtureType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightSource>(const DB& db, const LIST& params, IfcLightSource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightSourceAmbient>(const DB& db, const LIST& params, IfcLightSourceAmbient* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLightSource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightSourceDirectional>(const DB& db, const LIST& params, IfcLightSourceDirectional* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLightSource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightSourceGoniometric>(const DB& db, const LIST& params, IfcLightSourceGoniometric* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLightSource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightSourcePositional>(const DB& db, const LIST& params, IfcLightSourcePositional* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLightSource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLightSourceSpot>(const DB& db, const LIST& params, IfcLightSourceSpot* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLightSourcePositional*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLine>(const DB& db, const LIST& params, IfcLine* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCurve*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcLine"); } do { // convert the 'Pnt' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Pnt, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcLine to be a `IfcCartesianPoint`")); }
- } while(0);
- do { // convert the 'Dir' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Dir, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcLine to be a `IfcVector`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLinearDimension>(const DB& db, const LIST& params, IfcLinearDimension* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDimensionCurveDirectedCallout*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcLocalPlacement>(const DB& db, const LIST& params, IfcLocalPlacement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObjectPlacement*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcLocalPlacement"); } do { // convert the 'PlacementRelTo' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->PlacementRelTo, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcLocalPlacement to be a `IfcObjectPlacement`")); }
- } while(0);
- do { // convert the 'RelativePlacement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelativePlacement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcLocalPlacement to be a `IfcAxis2Placement`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMappedItem>(const DB& db, const LIST& params, IfcMappedItem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentationItem*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcMappedItem"); } do { // convert the 'MappingSource' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->MappingSource, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcMappedItem to be a `IfcRepresentationMap`")); }
- } while(0);
- do { // convert the 'MappingTarget' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->MappingTarget, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcMappedItem to be a `IfcCartesianTransformationOperator`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProductRepresentation>(const DB& db, const LIST& params, IfcProductRepresentation* in)
- {
- size_t base = 0;
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcProductRepresentation"); } do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProductRepresentation,3>::aux_is_derived[0]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcProductRepresentation to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'Description' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProductRepresentation,3>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Description, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcProductRepresentation to be a `IfcText`")); }
- } while(0);
- do { // convert the 'Representations' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcProductRepresentation,3>::aux_is_derived[2]=true; break; }
- try { GenericConvert( in->Representations, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcProductRepresentation to be a `LIST [1:?] OF IfcRepresentation`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMaterialDefinitionRepresentation>(const DB& db, const LIST& params, IfcMaterialDefinitionRepresentation* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProductRepresentation*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMeasureWithUnit>(const DB& db, const LIST& params, IfcMeasureWithUnit* in)
- {
- size_t base = 0;
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcMeasureWithUnit"); } do { // convert the 'ValueComponent' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ValueComponent, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcMeasureWithUnit to be a `IfcValue`")); }
- } while(0);
- do { // convert the 'UnitComponent' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->UnitComponent, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcMeasureWithUnit to be a `IfcUnit`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMechanicalFastener>(const DB& db, const LIST& params, IfcMechanicalFastener* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFastener*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMechanicalFastenerType>(const DB& db, const LIST& params, IfcMechanicalFastenerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFastenerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMember>(const DB& db, const LIST& params, IfcMember* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMemberType>(const DB& db, const LIST& params, IfcMemberType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMotorConnectionType>(const DB& db, const LIST& params, IfcMotorConnectionType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProcess>(const DB& db, const LIST& params, IfcProcess* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTask>(const DB& db, const LIST& params, IfcTask* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProcess*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcMove>(const DB& db, const LIST& params, IfcMove* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTask*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOccupant>(const DB& db, const LIST& params, IfcOccupant* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcActor*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOffsetCurve2D>(const DB& db, const LIST& params, IfcOffsetCurve2D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCurve*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOffsetCurve3D>(const DB& db, const LIST& params, IfcOffsetCurve3D* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCurve*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOneDirectionRepeatFactor>(const DB& db, const LIST& params, IfcOneDirectionRepeatFactor* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOpenShell>(const DB& db, const LIST& params, IfcOpenShell* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConnectedFaceSet*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOpeningElement>(const DB& db, const LIST& params, IfcOpeningElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFeatureElementSubtraction*>(in));
- if (params.GetSize() < 8) { throw STEP::TypeError("expected 8 arguments to IfcOpeningElement"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOrderAction>(const DB& db, const LIST& params, IfcOrderAction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTask*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOrientedEdge>(const DB& db, const LIST& params, IfcOrientedEdge* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEdge*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcOutletType>(const DB& db, const LIST& params, IfcOutletType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPath>(const DB& db, const LIST& params, IfcPath* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPerformanceHistory>(const DB& db, const LIST& params, IfcPerformanceHistory* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPermit>(const DB& db, const LIST& params, IfcPermit* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPile>(const DB& db, const LIST& params, IfcPile* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPipeFittingType>(const DB& db, const LIST& params, IfcPipeFittingType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowFittingType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPipeSegmentType>(const DB& db, const LIST& params, IfcPipeSegmentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowSegmentType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPlanarExtent>(const DB& db, const LIST& params, IfcPlanarExtent* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPlanarBox>(const DB& db, const LIST& params, IfcPlanarBox* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPlanarExtent*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPlane>(const DB& db, const LIST& params, IfcPlane* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementarySurface*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcPlane"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPlate>(const DB& db, const LIST& params, IfcPlate* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPlateType>(const DB& db, const LIST& params, IfcPlateType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPointOnCurve>(const DB& db, const LIST& params, IfcPointOnCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPoint*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPointOnSurface>(const DB& db, const LIST& params, IfcPointOnSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPoint*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPolyLoop>(const DB& db, const LIST& params, IfcPolyLoop* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLoop*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcPolyLoop"); } do { // convert the 'Polygon' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Polygon, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcPolyLoop to be a `LIST [3:?] OF IfcCartesianPoint`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPolygonalBoundedHalfSpace>(const DB& db, const LIST& params, IfcPolygonalBoundedHalfSpace* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcHalfSpaceSolid*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcPolygonalBoundedHalfSpace"); } do { // convert the 'Position' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Position, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcPolygonalBoundedHalfSpace to be a `IfcAxis2Placement3D`")); }
- } while(0);
- do { // convert the 'PolygonalBoundary' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->PolygonalBoundary, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcPolygonalBoundedHalfSpace to be a `IfcBoundedCurve`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPolyline>(const DB& db, const LIST& params, IfcPolyline* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBoundedCurve*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcPolyline"); } do { // convert the 'Points' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Points, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcPolyline to be a `LIST [2:?] OF IfcCartesianPoint`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPresentationStyleAssignment>(const DB& db, const LIST& params, IfcPresentationStyleAssignment* in)
- {
- size_t base = 0;
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcPresentationStyleAssignment"); } do { // convert the 'Styles' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Styles, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcPresentationStyleAssignment to be a `SET [1:?] OF IfcPresentationStyleSelect`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProcedure>(const DB& db, const LIST& params, IfcProcedure* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProcess*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProductDefinitionShape>(const DB& db, const LIST& params, IfcProductDefinitionShape* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProductRepresentation*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProject>(const DB& db, const LIST& params, IfcProject* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcObject*>(in));
- if (params.GetSize() < 9) { throw STEP::TypeError("expected 9 arguments to IfcProject"); } do { // convert the 'LongName' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->LongName, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcProject to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'Phase' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Phase, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 6 to IfcProject to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'RepresentationContexts' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RepresentationContexts, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 7 to IfcProject to be a `SET [1:?] OF IfcRepresentationContext`")); }
- } while(0);
- do { // convert the 'UnitsInContext' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->UnitsInContext, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 8 to IfcProject to be a `IfcUnitAssignment`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProjectOrder>(const DB& db, const LIST& params, IfcProjectOrder* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProjectOrderRecord>(const DB& db, const LIST& params, IfcProjectOrderRecord* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProjectionCurve>(const DB& db, const LIST& params, IfcProjectionCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcAnnotationCurveOccurrence*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProjectionElement>(const DB& db, const LIST& params, IfcProjectionElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFeatureElementAddition*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSimpleProperty>(const DB& db, const LIST& params, IfcSimpleProperty* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProperty*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcSimpleProperty"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertyBoundedValue>(const DB& db, const LIST& params, IfcPropertyBoundedValue* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSimpleProperty*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertyEnumeratedValue>(const DB& db, const LIST& params, IfcPropertyEnumeratedValue* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSimpleProperty*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertyListValue>(const DB& db, const LIST& params, IfcPropertyListValue* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSimpleProperty*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcPropertyListValue"); } do { // convert the 'ListValues' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ListValues, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcPropertyListValue to be a `LIST [1:?] OF IfcValue`")); }
- } while(0);
- do { // convert the 'Unit' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Unit, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcPropertyListValue to be a `IfcUnit`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertyReferenceValue>(const DB& db, const LIST& params, IfcPropertyReferenceValue* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSimpleProperty*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertySet>(const DB& db, const LIST& params, IfcPropertySet* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPropertySetDefinition*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcPropertySet"); } do { // convert the 'HasProperties' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->HasProperties, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcPropertySet to be a `SET [1:?] OF IfcProperty`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertySingleValue>(const DB& db, const LIST& params, IfcPropertySingleValue* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSimpleProperty*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcPropertySingleValue"); } do { // convert the 'NominalValue' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->NominalValue, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcPropertySingleValue to be a `IfcValue`")); }
- } while(0);
- do { // convert the 'Unit' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Unit, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcPropertySingleValue to be a `IfcUnit`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPropertyTableValue>(const DB& db, const LIST& params, IfcPropertyTableValue* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSimpleProperty*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProtectiveDeviceType>(const DB& db, const LIST& params, IfcProtectiveDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcProxy>(const DB& db, const LIST& params, IfcProxy* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcPumpType>(const DB& db, const LIST& params, IfcPumpType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowMovingDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRadiusDimension>(const DB& db, const LIST& params, IfcRadiusDimension* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDimensionCurveDirectedCallout*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRailing>(const DB& db, const LIST& params, IfcRailing* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRailingType>(const DB& db, const LIST& params, IfcRailingType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRamp>(const DB& db, const LIST& params, IfcRamp* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRampFlight>(const DB& db, const LIST& params, IfcRampFlight* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRampFlightType>(const DB& db, const LIST& params, IfcRampFlightType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRationalBezierCurve>(const DB& db, const LIST& params, IfcRationalBezierCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBezierCurve*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRectangleProfileDef>(const DB& db, const LIST& params, IfcRectangleProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcRectangleProfileDef"); } do { // convert the 'XDim' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRectangleProfileDef,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->XDim, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcRectangleProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'YDim' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRectangleProfileDef,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->YDim, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcRectangleProfileDef to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRectangleHollowProfileDef>(const DB& db, const LIST& params, IfcRectangleHollowProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRectangleProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRectangularPyramid>(const DB& db, const LIST& params, IfcRectangularPyramid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCsgPrimitive3D*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRectangularTrimmedSurface>(const DB& db, const LIST& params, IfcRectangularTrimmedSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBoundedSurface*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcReinforcingElement>(const DB& db, const LIST& params, IfcReinforcingElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementComponent*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcReinforcingBar>(const DB& db, const LIST& params, IfcReinforcingBar* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcReinforcingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcReinforcingMesh>(const DB& db, const LIST& params, IfcReinforcingMesh* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcReinforcingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelationship>(const DB& db, const LIST& params, IfcRelationship* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRoot*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcRelationship"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelDecomposes>(const DB& db, const LIST& params, IfcRelDecomposes* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelationship*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcRelDecomposes"); } do { // convert the 'RelatingObject' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRelDecomposes,2>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->RelatingObject, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcRelDecomposes to be a `IfcObjectDefinition`")); }
- } while(0);
- do { // convert the 'RelatedObjects' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRelDecomposes,2>::aux_is_derived[1]=true; break; }
- try { GenericConvert( in->RelatedObjects, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcRelDecomposes to be a `SET [1:?] OF IfcObjectDefinition`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelAggregates>(const DB& db, const LIST& params, IfcRelAggregates* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelDecomposes*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcRelAggregates"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelConnects>(const DB& db, const LIST& params, IfcRelConnects* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelationship*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcRelConnects"); } return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelContainedInSpatialStructure>(const DB& db, const LIST& params, IfcRelContainedInSpatialStructure* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelConnects*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcRelContainedInSpatialStructure"); } do { // convert the 'RelatedElements' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelatedElements, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcRelContainedInSpatialStructure to be a `SET [1:?] OF IfcProduct`")); }
- } while(0);
- do { // convert the 'RelatingStructure' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelatingStructure, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcRelContainedInSpatialStructure to be a `IfcSpatialStructureElement`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelDefines>(const DB& db, const LIST& params, IfcRelDefines* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelationship*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcRelDefines"); } do { // convert the 'RelatedObjects' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRelDefines,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->RelatedObjects, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcRelDefines to be a `SET [1:?] OF IfcObject`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelDefinesByProperties>(const DB& db, const LIST& params, IfcRelDefinesByProperties* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelDefines*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcRelDefinesByProperties"); } do { // convert the 'RelatingPropertyDefinition' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRelDefinesByProperties,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->RelatingPropertyDefinition, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcRelDefinesByProperties to be a `IfcPropertySetDefinition`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelFillsElement>(const DB& db, const LIST& params, IfcRelFillsElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelConnects*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcRelFillsElement"); } do { // convert the 'RelatingOpeningElement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelatingOpeningElement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcRelFillsElement to be a `IfcOpeningElement`")); }
- } while(0);
- do { // convert the 'RelatedBuildingElement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelatedBuildingElement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcRelFillsElement to be a `IfcElement`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelOverridesProperties>(const DB& db, const LIST& params, IfcRelOverridesProperties* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelDefinesByProperties*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRelVoidsElement>(const DB& db, const LIST& params, IfcRelVoidsElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRelConnects*>(in));
- if (params.GetSize() < 6) { throw STEP::TypeError("expected 6 arguments to IfcRelVoidsElement"); } do { // convert the 'RelatingBuildingElement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelatingBuildingElement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcRelVoidsElement to be a `IfcElement`")); }
- } while(0);
- do { // convert the 'RelatedOpeningElement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->RelatedOpeningElement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcRelVoidsElement to be a `IfcFeatureElementSubtraction`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRepresentation>(const DB& db, const LIST& params, IfcRepresentation* in)
- {
- size_t base = 0;
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcRepresentation"); } do { // convert the 'ContextOfItems' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRepresentation,4>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->ContextOfItems, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcRepresentation to be a `IfcRepresentationContext`")); }
- } while(0);
- do { // convert the 'RepresentationIdentifier' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRepresentation,4>::aux_is_derived[1]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RepresentationIdentifier, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcRepresentation to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'RepresentationType' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRepresentation,4>::aux_is_derived[2]=true; break; }
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RepresentationType, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcRepresentation to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'Items' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcRepresentation,4>::aux_is_derived[3]=true; break; }
- try { GenericConvert( in->Items, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcRepresentation to be a `SET [1:?] OF IfcRepresentationItem`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRepresentationMap>(const DB& db, const LIST& params, IfcRepresentationMap* in)
- {
- size_t base = 0;
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcRepresentationMap"); } do { // convert the 'MappingOrigin' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->MappingOrigin, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcRepresentationMap to be a `IfcAxis2Placement`")); }
- } while(0);
- do { // convert the 'MappedRepresentation' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->MappedRepresentation, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcRepresentationMap to be a `IfcRepresentation`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRevolvedAreaSolid>(const DB& db, const LIST& params, IfcRevolvedAreaSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSweptAreaSolid*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcRevolvedAreaSolid"); } do { // convert the 'Axis' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Axis, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcRevolvedAreaSolid to be a `IfcAxis1Placement`")); }
- } while(0);
- do { // convert the 'Angle' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Angle, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcRevolvedAreaSolid to be a `IfcPlaneAngleMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRightCircularCone>(const DB& db, const LIST& params, IfcRightCircularCone* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCsgPrimitive3D*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRightCircularCylinder>(const DB& db, const LIST& params, IfcRightCircularCylinder* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCsgPrimitive3D*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRoof>(const DB& db, const LIST& params, IfcRoof* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRoundedEdgeFeature>(const DB& db, const LIST& params, IfcRoundedEdgeFeature* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEdgeFeature*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcRoundedRectangleProfileDef>(const DB& db, const LIST& params, IfcRoundedRectangleProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRectangleProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSIUnit>(const DB& db, const LIST& params, IfcSIUnit* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcNamedUnit*>(in));
- if (params.GetSize() < 4) { throw STEP::TypeError("expected 4 arguments to IfcSIUnit"); } do { // convert the 'Prefix' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Prefix, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcSIUnit to be a `IfcSIPrefix`")); }
- } while(0);
- do { // convert the 'Name' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Name, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcSIUnit to be a `IfcSIUnitName`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSanitaryTerminalType>(const DB& db, const LIST& params, IfcSanitaryTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcScheduleTimeControl>(const DB& db, const LIST& params, IfcScheduleTimeControl* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSectionedSpine>(const DB& db, const LIST& params, IfcSectionedSpine* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSensorType>(const DB& db, const LIST& params, IfcSensorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDistributionControlElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcServiceLife>(const DB& db, const LIST& params, IfcServiceLife* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcShapeModel>(const DB& db, const LIST& params, IfcShapeModel* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentation*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcShapeRepresentation>(const DB& db, const LIST& params, IfcShapeRepresentation* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcShapeModel*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcShellBasedSurfaceModel>(const DB& db, const LIST& params, IfcShellBasedSurfaceModel* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcShellBasedSurfaceModel"); } do { // convert the 'SbsmBoundary' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->SbsmBoundary, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcShellBasedSurfaceModel to be a `SET [1:?] OF IfcShell`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSite>(const DB& db, const LIST& params, IfcSite* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSpatialStructureElement*>(in));
- if (params.GetSize() < 14) { throw STEP::TypeError("expected 14 arguments to IfcSite"); } do { // convert the 'RefLatitude' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RefLatitude, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 9 to IfcSite to be a `IfcCompoundPlaneAngleMeasure`")); }
- } while(0);
- do { // convert the 'RefLongitude' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RefLongitude, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 10 to IfcSite to be a `IfcCompoundPlaneAngleMeasure`")); }
- } while(0);
- do { // convert the 'RefElevation' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->RefElevation, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 11 to IfcSite to be a `IfcLengthMeasure`")); }
- } while(0);
- do { // convert the 'LandTitleNumber' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->LandTitleNumber, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 12 to IfcSite to be a `IfcLabel`")); }
- } while(0);
- do { // convert the 'SiteAddress' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->SiteAddress, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 13 to IfcSite to be a `IfcPostalAddress`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSlab>(const DB& db, const LIST& params, IfcSlab* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSlabType>(const DB& db, const LIST& params, IfcSlabType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSpace>(const DB& db, const LIST& params, IfcSpace* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSpatialStructureElement*>(in));
- if (params.GetSize() < 11) { throw STEP::TypeError("expected 11 arguments to IfcSpace"); } do { // convert the 'InteriorOrExteriorSpace' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->InteriorOrExteriorSpace, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 9 to IfcSpace to be a `IfcInternalOrExternalEnum`")); }
- } while(0);
- do { // convert the 'ElevationWithFlooring' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ElevationWithFlooring, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 10 to IfcSpace to be a `IfcLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSpaceHeaterType>(const DB& db, const LIST& params, IfcSpaceHeaterType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSpaceProgram>(const DB& db, const LIST& params, IfcSpaceProgram* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSpatialStructureElementType>(const DB& db, const LIST& params, IfcSpatialStructureElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSpaceType>(const DB& db, const LIST& params, IfcSpaceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSpatialStructureElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSphere>(const DB& db, const LIST& params, IfcSphere* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcCsgPrimitive3D*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStackTerminalType>(const DB& db, const LIST& params, IfcStackTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStair>(const DB& db, const LIST& params, IfcStair* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStairFlight>(const DB& db, const LIST& params, IfcStairFlight* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStairFlightType>(const DB& db, const LIST& params, IfcStairFlightType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralActivity>(const DB& db, const LIST& params, IfcStructuralActivity* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralAction>(const DB& db, const LIST& params, IfcStructuralAction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralActivity*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralAnalysisModel>(const DB& db, const LIST& params, IfcStructuralAnalysisModel* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSystem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralItem>(const DB& db, const LIST& params, IfcStructuralItem* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralConnection>(const DB& db, const LIST& params, IfcStructuralConnection* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralCurveConnection>(const DB& db, const LIST& params, IfcStructuralCurveConnection* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralConnection*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralMember>(const DB& db, const LIST& params, IfcStructuralMember* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralCurveMember>(const DB& db, const LIST& params, IfcStructuralCurveMember* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralMember*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralCurveMemberVarying>(const DB& db, const LIST& params, IfcStructuralCurveMemberVarying* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralCurveMember*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralLinearAction>(const DB& db, const LIST& params, IfcStructuralLinearAction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralAction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralLinearActionVarying>(const DB& db, const LIST& params, IfcStructuralLinearActionVarying* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralLinearAction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralLoadGroup>(const DB& db, const LIST& params, IfcStructuralLoadGroup* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralPlanarAction>(const DB& db, const LIST& params, IfcStructuralPlanarAction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralAction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralPlanarActionVarying>(const DB& db, const LIST& params, IfcStructuralPlanarActionVarying* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralPlanarAction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralPointAction>(const DB& db, const LIST& params, IfcStructuralPointAction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralAction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralPointConnection>(const DB& db, const LIST& params, IfcStructuralPointConnection* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralConnection*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralReaction>(const DB& db, const LIST& params, IfcStructuralReaction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralActivity*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralPointReaction>(const DB& db, const LIST& params, IfcStructuralPointReaction* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralReaction*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralResultGroup>(const DB& db, const LIST& params, IfcStructuralResultGroup* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralSurfaceConnection>(const DB& db, const LIST& params, IfcStructuralSurfaceConnection* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralConnection*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralSurfaceMember>(const DB& db, const LIST& params, IfcStructuralSurfaceMember* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralMember*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuralSurfaceMemberVarying>(const DB& db, const LIST& params, IfcStructuralSurfaceMemberVarying* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStructuralSurfaceMember*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStructuredDimensionCallout>(const DB& db, const LIST& params, IfcStructuredDimensionCallout* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDraughtingCallout*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStyleModel>(const DB& db, const LIST& params, IfcStyleModel* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcRepresentation*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcStyledRepresentation>(const DB& db, const LIST& params, IfcStyledRepresentation* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcStyleModel*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSubContractResource>(const DB& db, const LIST& params, IfcSubContractResource* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcConstructionResource*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSubedge>(const DB& db, const LIST& params, IfcSubedge* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEdge*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceCurveSweptAreaSolid>(const DB& db, const LIST& params, IfcSurfaceCurveSweptAreaSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSweptAreaSolid*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSweptSurface>(const DB& db, const LIST& params, IfcSweptSurface* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSurface*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceOfLinearExtrusion>(const DB& db, const LIST& params, IfcSurfaceOfLinearExtrusion* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSweptSurface*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceOfRevolution>(const DB& db, const LIST& params, IfcSurfaceOfRevolution* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSweptSurface*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceStyle>(const DB& db, const LIST& params, IfcSurfaceStyle* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcPresentationStyle*>(in));
- if (params.GetSize() < 3) { throw STEP::TypeError("expected 3 arguments to IfcSurfaceStyle"); } do { // convert the 'Side' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Side, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcSurfaceStyle to be a `IfcSurfaceSide`")); }
- } while(0);
- do { // convert the 'Styles' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Styles, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcSurfaceStyle to be a `SET [1:5] OF IfcSurfaceStyleElementSelect`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceStyleShading>(const DB& db, const LIST& params, IfcSurfaceStyleShading* in)
- {
- size_t base = 0;
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcSurfaceStyleShading"); } do { // convert the 'SurfaceColour' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const ISDERIVED*>(&*arg)) { in->ObjectHelper<Assimp::IFC::IfcSurfaceStyleShading,1>::aux_is_derived[0]=true; break; }
- try { GenericConvert( in->SurfaceColour, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcSurfaceStyleShading to be a `IfcColourRgb`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceStyleRendering>(const DB& db, const LIST& params, IfcSurfaceStyleRendering* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSurfaceStyleShading*>(in));
- if (params.GetSize() < 9) { throw STEP::TypeError("expected 9 arguments to IfcSurfaceStyleRendering"); } do { // convert the 'Transparency' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->Transparency, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcSurfaceStyleRendering to be a `IfcNormalisedRatioMeasure`")); }
- } while(0);
- do { // convert the 'DiffuseColour' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->DiffuseColour, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcSurfaceStyleRendering to be a `IfcColourOrFactor`")); }
- } while(0);
- do { // convert the 'TransmissionColour' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->TransmissionColour, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcSurfaceStyleRendering to be a `IfcColourOrFactor`")); }
- } while(0);
- do { // convert the 'DiffuseTransmissionColour' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->DiffuseTransmissionColour, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcSurfaceStyleRendering to be a `IfcColourOrFactor`")); }
- } while(0);
- do { // convert the 'ReflectionColour' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->ReflectionColour, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 5 to IfcSurfaceStyleRendering to be a `IfcColourOrFactor`")); }
- } while(0);
- do { // convert the 'SpecularColour' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->SpecularColour, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 6 to IfcSurfaceStyleRendering to be a `IfcColourOrFactor`")); }
- } while(0);
- do { // convert the 'SpecularHighlight' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->SpecularHighlight, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 7 to IfcSurfaceStyleRendering to be a `IfcSpecularHighlightSelect`")); }
- } while(0);
- do { // convert the 'ReflectanceMethod' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->ReflectanceMethod, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 8 to IfcSurfaceStyleRendering to be a `IfcReflectanceMethodEnum`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSurfaceStyleWithTextures>(const DB& db, const LIST& params, IfcSurfaceStyleWithTextures* in)
- {
- size_t base = 0;
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcSurfaceStyleWithTextures"); } do { // convert the 'Textures' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Textures, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcSurfaceStyleWithTextures to be a `LIST [1:?] OF IfcSurfaceTexture`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSweptDiskSolid>(const DB& db, const LIST& params, IfcSweptDiskSolid* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcSolidModel*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcSweptDiskSolid"); } do { // convert the 'Directrix' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Directrix, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcSweptDiskSolid to be a `IfcCurve`")); }
- } while(0);
- do { // convert the 'Radius' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Radius, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcSweptDiskSolid to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'InnerRadius' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- if (dynamic_cast<const UNSET*>(&*arg)) break;
- try { GenericConvert( in->InnerRadius, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcSweptDiskSolid to be a `IfcPositiveLengthMeasure`")); }
- } while(0);
- do { // convert the 'StartParam' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->StartParam, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcSweptDiskSolid to be a `IfcParameterValue`")); }
- } while(0);
- do { // convert the 'EndParam' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->EndParam, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcSweptDiskSolid to be a `IfcParameterValue`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSwitchingDeviceType>(const DB& db, const LIST& params, IfcSwitchingDeviceType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcSystemFurnitureElementType>(const DB& db, const LIST& params, IfcSystemFurnitureElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFurnishingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTShapeProfileDef>(const DB& db, const LIST& params, IfcTShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTankType>(const DB& db, const LIST& params, IfcTankType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowStorageDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTendon>(const DB& db, const LIST& params, IfcTendon* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcReinforcingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTendonAnchor>(const DB& db, const LIST& params, IfcTendonAnchor* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcReinforcingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTextLiteral>(const DB& db, const LIST& params, IfcTextLiteral* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTextLiteralWithExtent>(const DB& db, const LIST& params, IfcTextLiteralWithExtent* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTextLiteral*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTimeSeriesSchedule>(const DB& db, const LIST& params, IfcTimeSeriesSchedule* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTopologyRepresentation>(const DB& db, const LIST& params, IfcTopologyRepresentation* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcShapeModel*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTransformerType>(const DB& db, const LIST& params, IfcTransformerType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTransportElement>(const DB& db, const LIST& params, IfcTransportElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTransportElementType>(const DB& db, const LIST& params, IfcTransportElementType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTrapeziumProfileDef>(const DB& db, const LIST& params, IfcTrapeziumProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTrimmedCurve>(const DB& db, const LIST& params, IfcTrimmedCurve* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBoundedCurve*>(in));
- if (params.GetSize() < 5) { throw STEP::TypeError("expected 5 arguments to IfcTrimmedCurve"); } do { // convert the 'BasisCurve' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->BasisCurve, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcTrimmedCurve to be a `IfcCurve`")); }
- } while(0);
- do { // convert the 'Trim1' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Trim1, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcTrimmedCurve to be a `SET [1:2] OF IfcTrimmingSelect`")); }
- } while(0);
- do { // convert the 'Trim2' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Trim2, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 2 to IfcTrimmedCurve to be a `SET [1:2] OF IfcTrimmingSelect`")); }
- } while(0);
- do { // convert the 'SenseAgreement' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->SenseAgreement, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 3 to IfcTrimmedCurve to be a `BOOLEAN`")); }
- } while(0);
- do { // convert the 'MasterRepresentation' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->MasterRepresentation, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 4 to IfcTrimmedCurve to be a `IfcTrimmingPreference`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTubeBundleType>(const DB& db, const LIST& params, IfcTubeBundleType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcTwoDirectionRepeatFactor>(const DB& db, const LIST& params, IfcTwoDirectionRepeatFactor* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcOneDirectionRepeatFactor*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcUShapeProfileDef>(const DB& db, const LIST& params, IfcUShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcUnitAssignment>(const DB& db, const LIST& params, IfcUnitAssignment* in)
- {
- size_t base = 0;
- if (params.GetSize() < 1) { throw STEP::TypeError("expected 1 arguments to IfcUnitAssignment"); } do { // convert the 'Units' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Units, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcUnitAssignment to be a `SET [1:?] OF IfcUnit`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcUnitaryEquipmentType>(const DB& db, const LIST& params, IfcUnitaryEquipmentType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcEnergyConversionDeviceType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcValveType>(const DB& db, const LIST& params, IfcValveType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowControllerType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcVector>(const DB& db, const LIST& params, IfcVector* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGeometricRepresentationItem*>(in));
- if (params.GetSize() < 2) { throw STEP::TypeError("expected 2 arguments to IfcVector"); } do { // convert the 'Orientation' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Orientation, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 0 to IfcVector to be a `IfcDirection`")); }
- } while(0);
- do { // convert the 'Magnitude' argument
- boost::shared_ptr<const DataType> arg = params[base++];
- try { GenericConvert( in->Magnitude, arg, db ); break; }
- catch (const TypeError& t) { throw TypeError(t.what() + std::string(" - expected argument 1 to IfcVector to be a `IfcLengthMeasure`")); }
- } while(0);
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcVertex>(const DB& db, const LIST& params, IfcVertex* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTopologicalRepresentationItem*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcVertexLoop>(const DB& db, const LIST& params, IfcVertexLoop* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcLoop*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcVertexPoint>(const DB& db, const LIST& params, IfcVertexPoint* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcVertex*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcVibrationIsolatorType>(const DB& db, const LIST& params, IfcVibrationIsolatorType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcDiscreteAccessoryType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcVirtualElement>(const DB& db, const LIST& params, IfcVirtualElement* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWall>(const DB& db, const LIST& params, IfcWall* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWallStandardCase>(const DB& db, const LIST& params, IfcWallStandardCase* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcWall*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWallType>(const DB& db, const LIST& params, IfcWallType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElementType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWasteTerminalType>(const DB& db, const LIST& params, IfcWasteTerminalType* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcFlowTerminalType*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWindow>(const DB& db, const LIST& params, IfcWindow* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcBuildingElement*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWindowStyle>(const DB& db, const LIST& params, IfcWindowStyle* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcTypeProduct*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWorkControl>(const DB& db, const LIST& params, IfcWorkControl* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWorkPlan>(const DB& db, const LIST& params, IfcWorkPlan* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcWorkControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcWorkSchedule>(const DB& db, const LIST& params, IfcWorkSchedule* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcWorkControl*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcZShapeProfileDef>(const DB& db, const LIST& params, IfcZShapeProfileDef* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcParameterizedProfileDef*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- // -----------------------------------------------------------------------------------------------------------
- template <> size_t GenericFill<IfcZone>(const DB& db, const LIST& params, IfcZone* in)
- {
- size_t base = GenericFill(db,params,static_cast<IfcGroup*>(in));
- // this data structure is not used yet, so there is no code generated to fill its members
- return base;
- }
- } // ! STEP
- } // ! Assimp
- #endif
|