-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgdtf-pskel.h
5099 lines (3988 loc) · 122 KB
/
gdtf-pskel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2005-2014 Code Synthesis Tools CC
//
// This program was generated by CodeSynthesis XSD, an XML Schema to
// C++ data binding compiler.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
// In addition, as a special exception, Code Synthesis Tools CC gives
// permission to link this program with the Xerces-C++ library (or with
// modified versions of Xerces-C++ that use the same license as Xerces-C++),
// and distribute linked combinations including the two. You must obey
// the GNU General Public License version 2 in all respects for all of
// the code used other than Xerces-C++. If you modify this copy of the
// program, you may extend this exception to your version of the program,
// but you are not obligated to do so. If you do not wish to do so, delete
// this exception statement from your version.
//
// Furthermore, Code Synthesis Tools CC makes a special exception for
// the Free/Libre and Open Source Software (FLOSS) which is described
// in the accompanying FLOSSE file.
//
#ifndef GDTF_LIBRARIES_GDTF_PSKEL_H
#define GDTF_LIBRARIES_GDTF_PSKEL_H
#ifndef XSD_CXX11
#define XSD_CXX11
#endif
// Begin prologue.
//
//
// End prologue.
#include <xsd/cxx/config.hxx>
#if (XSD_INT_VERSION != 4000000L)
#error XSD runtime version mismatch
#endif
#include <xsd/cxx/pre.hxx>
// Forward declarations
//
namespace device
{
class matrixtype_pskel;
class colorcietype_pskel;
class offsettype_pskel;
class dmxtype_pskel;
class dmxvalue_pskel;
class nametype_pskel;
class dataversion_pskel;
class guidtype_pskel;
class PhysicalUnitEnum_pskel;
class MasterEnum_pskel;
class PrimitiveTypeEnum_pskel;
class LampTypeEnum_pskel;
class BeamTypeEnum_pskel;
class ColorSpaceEnum_pskel;
class InterpolationToEnum_pskel;
class SnapEnum_pskel;
class YesNoEnum_pskel;
class RelationTypesEnum_pskel;
class RDMParameterTypeEnum_pskel;
class ThresholdOperatorEnum_pskel;
class RDMParameterDataTypeEnum_pskel;
class RDMParameterCommandEnum_pskel;
class RDMSensorTypeEnum_pskel;
class RDMParameterSensorUnitEnum_pskel;
class RDMSlotInfoTypeEnum_pskel;
class RDMSlotLabelIDEnum_pskel;
class RDMParameterSensorUnitPrefixEnum_pskel;
class CESEnum_pskel;
class AttributeEnum_pskel;
class GDTF_pskel;
class FixtureType_pskel;
class Wheels_pskel;
class Wheel_pskel;
class Slot_pskel;
class Facet_pskel;
class Models_pskel;
class Model_pskel;
class Geometries_pskel;
class Geometry_pskel;
class Axis_pskel;
class FilterBeam_pskel;
class FilterColor_pskel;
class FilterGobo_pskel;
class FilterShaper_pskel;
class Beam_pskel;
class GeometryReference_pskel;
class Break_pskel;
class DMXModes_pskel;
class DMXMode_pskel;
class DMXChannels_pskel;
class DMXChannel_pskel;
class LogicalChannel_pskel;
class ChannelFunction_pskel;
class ChannelSet_pskel;
class Relations_pskel;
class Relation_pskel;
class Revisions_pskel;
class Revision_pskel;
class FTPresets_pskel;
class FTPreset_pskel;
class FTMacros_pskel;
class FTMacro_pskel;
class MacroDMX_pskel;
class DMXStep_pskel;
class DMXValue_pskel;
class MacroVisual_pskel;
class VisualStep_pskel;
class VisualValue_pskel;
class PhysicalDescriptions_pskel;
class Emitters_pskel;
class Emitter_pskel;
class Filters_pskel;
class Filter_pskel;
class Measurement_pskel;
class MeasurementPoint_pskel;
class ColorSpace_pskel;
class DMXProfiles_pskel;
class DMXProfile_pskel;
class CRIs_pskel;
class CRI_pskel;
class Protocols_pskel;
class Art_Net_pskel;
class sACN_pskel;
class KiNET_pskel;
class PosiStageNet_pskel;
class OpenSoundControl_pskel;
class CITP_pskel;
class RDM_pskel;
class SoftwareVersionID_pskel;
class DMXPersonality_pskel;
class AttributeDefinitions_pskel;
class ActivationGroups_pskel;
class FeatureGroups_pskel;
class ActivationGroup_pskel;
class FeatureGroup_pskel;
class Feature_pskel;
class Attributes_pskel;
class Attribute_pskel;
}
#ifndef XSD_USE_CHAR
#define XSD_USE_CHAR
#endif
#ifndef XSD_CXX_PARSER_USE_CHAR
#define XSD_CXX_PARSER_USE_CHAR
#endif
#include <xsd/cxx/xml/char-utf8.hxx>
#include <xsd/cxx/xml/error-handler.hxx>
#include <xsd/cxx/parser/exceptions.hxx>
#include <xsd/cxx/parser/elements.hxx>
#include <xsd/cxx/parser/xml-schema.hxx>
#include <xsd/cxx/parser/non-validating/parser.hxx>
#include <xsd/cxx/parser/non-validating/xml-schema-pskel.hxx>
#include <xsd/cxx/parser/non-validating/xml-schema-pimpl.hxx>
#include <xsd/cxx/parser/xerces/elements.hxx>
namespace xml_schema
{
// Built-in XML Schema types mapping.
//
typedef ::xsd::cxx::parser::string_sequence< char > string_sequence;
typedef ::xsd::cxx::parser::qname< char > qname;
typedef ::xsd::cxx::parser::buffer buffer;
typedef ::xsd::cxx::parser::time_zone time_zone;
typedef ::xsd::cxx::parser::gday gday;
typedef ::xsd::cxx::parser::gmonth gmonth;
typedef ::xsd::cxx::parser::gyear gyear;
typedef ::xsd::cxx::parser::gmonth_day gmonth_day;
typedef ::xsd::cxx::parser::gyear_month gyear_month;
typedef ::xsd::cxx::parser::date date;
typedef ::xsd::cxx::parser::time time;
typedef ::xsd::cxx::parser::date_time date_time;
typedef ::xsd::cxx::parser::duration duration;
// Base parser skeletons.
//
typedef ::xsd::cxx::parser::parser_base< char > parser_base;
typedef ::xsd::cxx::parser::non_validating::empty_content< char > empty_content;
typedef ::xsd::cxx::parser::non_validating::simple_content< char > simple_content;
typedef ::xsd::cxx::parser::non_validating::complex_content< char > complex_content;
typedef ::xsd::cxx::parser::non_validating::list_base< char > list_base;
// Parser skeletons and implementations for the XML Schema
// built-in types.
//
typedef ::xsd::cxx::parser::non_validating::any_type_pskel< char > any_type_pskel;
typedef ::xsd::cxx::parser::non_validating::any_type_pimpl< char > any_type_pimpl;
typedef ::xsd::cxx::parser::non_validating::any_simple_type_pskel< char > any_simple_type_pskel;
typedef ::xsd::cxx::parser::non_validating::any_simple_type_pimpl< char > any_simple_type_pimpl;
typedef ::xsd::cxx::parser::non_validating::byte_pskel< char > byte_pskel;
typedef ::xsd::cxx::parser::non_validating::byte_pimpl< char > byte_pimpl;
typedef ::xsd::cxx::parser::non_validating::unsigned_byte_pskel< char > unsigned_byte_pskel;
typedef ::xsd::cxx::parser::non_validating::unsigned_byte_pimpl< char > unsigned_byte_pimpl;
typedef ::xsd::cxx::parser::non_validating::short_pskel< char > short_pskel;
typedef ::xsd::cxx::parser::non_validating::short_pimpl< char > short_pimpl;
typedef ::xsd::cxx::parser::non_validating::unsigned_short_pskel< char > unsigned_short_pskel;
typedef ::xsd::cxx::parser::non_validating::unsigned_short_pimpl< char > unsigned_short_pimpl;
typedef ::xsd::cxx::parser::non_validating::int_pskel< char > int_pskel;
typedef ::xsd::cxx::parser::non_validating::int_pimpl< char > int_pimpl;
typedef ::xsd::cxx::parser::non_validating::unsigned_int_pskel< char > unsigned_int_pskel;
typedef ::xsd::cxx::parser::non_validating::unsigned_int_pimpl< char > unsigned_int_pimpl;
typedef ::xsd::cxx::parser::non_validating::long_pskel< char > long_pskel;
typedef ::xsd::cxx::parser::non_validating::long_pimpl< char > long_pimpl;
typedef ::xsd::cxx::parser::non_validating::unsigned_long_pskel< char > unsigned_long_pskel;
typedef ::xsd::cxx::parser::non_validating::unsigned_long_pimpl< char > unsigned_long_pimpl;
typedef ::xsd::cxx::parser::non_validating::integer_pskel< char > integer_pskel;
typedef ::xsd::cxx::parser::non_validating::integer_pimpl< char > integer_pimpl;
typedef ::xsd::cxx::parser::non_validating::non_positive_integer_pskel< char > non_positive_integer_pskel;
typedef ::xsd::cxx::parser::non_validating::non_positive_integer_pimpl< char > non_positive_integer_pimpl;
typedef ::xsd::cxx::parser::non_validating::non_negative_integer_pskel< char > non_negative_integer_pskel;
typedef ::xsd::cxx::parser::non_validating::non_negative_integer_pimpl< char > non_negative_integer_pimpl;
typedef ::xsd::cxx::parser::non_validating::positive_integer_pskel< char > positive_integer_pskel;
typedef ::xsd::cxx::parser::non_validating::positive_integer_pimpl< char > positive_integer_pimpl;
typedef ::xsd::cxx::parser::non_validating::negative_integer_pskel< char > negative_integer_pskel;
typedef ::xsd::cxx::parser::non_validating::negative_integer_pimpl< char > negative_integer_pimpl;
typedef ::xsd::cxx::parser::non_validating::boolean_pskel< char > boolean_pskel;
typedef ::xsd::cxx::parser::non_validating::boolean_pimpl< char > boolean_pimpl;
typedef ::xsd::cxx::parser::non_validating::float_pskel< char > float_pskel;
typedef ::xsd::cxx::parser::non_validating::float_pimpl< char > float_pimpl;
typedef ::xsd::cxx::parser::non_validating::double_pskel< char > double_pskel;
typedef ::xsd::cxx::parser::non_validating::double_pimpl< char > double_pimpl;
typedef ::xsd::cxx::parser::non_validating::decimal_pskel< char > decimal_pskel;
typedef ::xsd::cxx::parser::non_validating::decimal_pimpl< char > decimal_pimpl;
typedef ::xsd::cxx::parser::non_validating::string_pskel< char > string_pskel;
typedef ::xsd::cxx::parser::non_validating::string_pimpl< char > string_pimpl;
typedef ::xsd::cxx::parser::non_validating::normalized_string_pskel< char > normalized_string_pskel;
typedef ::xsd::cxx::parser::non_validating::normalized_string_pimpl< char > normalized_string_pimpl;
typedef ::xsd::cxx::parser::non_validating::token_pskel< char > token_pskel;
typedef ::xsd::cxx::parser::non_validating::token_pimpl< char > token_pimpl;
typedef ::xsd::cxx::parser::non_validating::name_pskel< char > name_pskel;
typedef ::xsd::cxx::parser::non_validating::name_pimpl< char > name_pimpl;
typedef ::xsd::cxx::parser::non_validating::nmtoken_pskel< char > nmtoken_pskel;
typedef ::xsd::cxx::parser::non_validating::nmtoken_pimpl< char > nmtoken_pimpl;
typedef ::xsd::cxx::parser::non_validating::nmtokens_pskel< char > nmtokens_pskel;
typedef ::xsd::cxx::parser::non_validating::nmtokens_pimpl< char > nmtokens_pimpl;
typedef ::xsd::cxx::parser::non_validating::ncname_pskel< char > ncname_pskel;
typedef ::xsd::cxx::parser::non_validating::ncname_pimpl< char > ncname_pimpl;
typedef ::xsd::cxx::parser::non_validating::language_pskel< char > language_pskel;
typedef ::xsd::cxx::parser::non_validating::language_pimpl< char > language_pimpl;
typedef ::xsd::cxx::parser::non_validating::id_pskel< char > id_pskel;
typedef ::xsd::cxx::parser::non_validating::id_pimpl< char > id_pimpl;
typedef ::xsd::cxx::parser::non_validating::idref_pskel< char > idref_pskel;
typedef ::xsd::cxx::parser::non_validating::idref_pimpl< char > idref_pimpl;
typedef ::xsd::cxx::parser::non_validating::idrefs_pskel< char > idrefs_pskel;
typedef ::xsd::cxx::parser::non_validating::idrefs_pimpl< char > idrefs_pimpl;
typedef ::xsd::cxx::parser::non_validating::uri_pskel< char > uri_pskel;
typedef ::xsd::cxx::parser::non_validating::uri_pimpl< char > uri_pimpl;
typedef ::xsd::cxx::parser::non_validating::qname_pskel< char > qname_pskel;
typedef ::xsd::cxx::parser::non_validating::qname_pimpl< char > qname_pimpl;
typedef ::xsd::cxx::parser::non_validating::base64_binary_pskel< char > base64_binary_pskel;
typedef ::xsd::cxx::parser::non_validating::base64_binary_pimpl< char > base64_binary_pimpl;
typedef ::xsd::cxx::parser::non_validating::hex_binary_pskel< char > hex_binary_pskel;
typedef ::xsd::cxx::parser::non_validating::hex_binary_pimpl< char > hex_binary_pimpl;
typedef ::xsd::cxx::parser::non_validating::date_pskel< char > date_pskel;
typedef ::xsd::cxx::parser::non_validating::date_pimpl< char > date_pimpl;
typedef ::xsd::cxx::parser::non_validating::date_time_pskel< char > date_time_pskel;
typedef ::xsd::cxx::parser::non_validating::date_time_pimpl< char > date_time_pimpl;
typedef ::xsd::cxx::parser::non_validating::duration_pskel< char > duration_pskel;
typedef ::xsd::cxx::parser::non_validating::duration_pimpl< char > duration_pimpl;
typedef ::xsd::cxx::parser::non_validating::gday_pskel< char > gday_pskel;
typedef ::xsd::cxx::parser::non_validating::gday_pimpl< char > gday_pimpl;
typedef ::xsd::cxx::parser::non_validating::gmonth_pskel< char > gmonth_pskel;
typedef ::xsd::cxx::parser::non_validating::gmonth_pimpl< char > gmonth_pimpl;
typedef ::xsd::cxx::parser::non_validating::gmonth_day_pskel< char > gmonth_day_pskel;
typedef ::xsd::cxx::parser::non_validating::gmonth_day_pimpl< char > gmonth_day_pimpl;
typedef ::xsd::cxx::parser::non_validating::gyear_pskel< char > gyear_pskel;
typedef ::xsd::cxx::parser::non_validating::gyear_pimpl< char > gyear_pimpl;
typedef ::xsd::cxx::parser::non_validating::gyear_month_pskel< char > gyear_month_pskel;
typedef ::xsd::cxx::parser::non_validating::gyear_month_pimpl< char > gyear_month_pimpl;
typedef ::xsd::cxx::parser::non_validating::time_pskel< char > time_pskel;
typedef ::xsd::cxx::parser::non_validating::time_pimpl< char > time_pimpl;
// Exceptions. See libxsd/xsd/cxx/parser/exceptions.hxx for details.
//
typedef ::xsd::cxx::parser::exception< char > exception;
// Parsing diagnostics.
//
typedef ::xsd::cxx::parser::severity severity;
typedef ::xsd::cxx::parser::error< char > error;
typedef ::xsd::cxx::parser::diagnostics< char > diagnostics;
typedef ::xsd::cxx::parser::parsing< char > parsing;
// Error handler. See libxsd/xsd/cxx/xml/error-handler.hxx for details.
//
typedef ::xsd::cxx::xml::error_handler< char > error_handler;
// Read-only string.
//
typedef ::xsd::cxx::ro_string< char > ro_string;
// Parsing flags. See libxsd/xsd/cxx/parser/xerces/elements.hxx
// for details.
//
typedef ::xsd::cxx::parser::xerces::flags flags;
// Parsing properties. See libxsd/xsd/cxx/parser/xerces/elements.hxx
// for details.
//
typedef ::xsd::cxx::parser::xerces::properties< char > properties;
// Document type. See libxsd/xsd/cxx/parser/xerces/elements.hxx
// for details.
//
typedef ::xsd::cxx::parser::xerces::document< char > document;
}
namespace device
{
class matrixtype_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_matrixtype ();
};
class colorcietype_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_colorcietype ();
};
class offsettype_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_offsettype ();
};
class dmxtype_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_dmxtype ();
};
class dmxvalue_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_dmxvalue ();
};
class nametype_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_nametype ();
};
class dataversion_pskel: public virtual ::xml_schema::float_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_dataversion ();
};
class guidtype_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_guidtype ();
};
class PhysicalUnitEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_PhysicalUnitEnum ();
};
class MasterEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_MasterEnum ();
};
class PrimitiveTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_PrimitiveTypeEnum ();
};
class LampTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_LampTypeEnum ();
};
class BeamTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_BeamTypeEnum ();
};
class ColorSpaceEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_ColorSpaceEnum ();
};
class InterpolationToEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_InterpolationToEnum ();
};
class SnapEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_SnapEnum ();
};
class YesNoEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_YesNoEnum ();
};
class RelationTypesEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RelationTypesEnum ();
};
class RDMParameterTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMParameterTypeEnum ();
};
class ThresholdOperatorEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_ThresholdOperatorEnum ();
};
class RDMParameterDataTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMParameterDataTypeEnum ();
};
class RDMParameterCommandEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMParameterCommandEnum ();
};
class RDMSensorTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMSensorTypeEnum ();
};
class RDMParameterSensorUnitEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMParameterSensorUnitEnum ();
};
class RDMSlotInfoTypeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMSlotInfoTypeEnum ();
};
class RDMSlotLabelIDEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMSlotLabelIDEnum ();
};
class RDMParameterSensorUnitPrefixEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_RDMParameterSensorUnitPrefixEnum ();
};
class CESEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_CESEnum ();
};
class AttributeEnum_pskel: public virtual ::xml_schema::string_pskel
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
post_AttributeEnum ();
};
class GDTF_pskel: public ::xml_schema::complex_content
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
FixtureType ();
virtual void
DataVersion ();
virtual void
post_GDTF ();
// Parser construction API.
//
void
FixtureType_parser (::device::FixtureType_pskel&);
void
DataVersion_parser (::device::dataversion_pskel&);
void
parsers (::device::FixtureType_pskel& /* FixtureType */,
::device::dataversion_pskel& /* DataVersion */);
// Constructor.
//
GDTF_pskel ();
// Implementation.
//
protected:
virtual bool
_start_element_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&,
const ::xml_schema::ro_string*);
virtual bool
_end_element_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&);
virtual bool
_attribute_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&);
protected:
::device::FixtureType_pskel* FixtureType_parser_;
::device::dataversion_pskel* DataVersion_parser_;
};
class FixtureType_pskel: public ::xml_schema::complex_content
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
AttributeDefinitions ();
virtual void
Wheels ();
virtual void
PhysicalDescriptions ();
virtual void
Models ();
virtual void
Geometries ();
virtual void
DMXModes ();
virtual void
Revisions ();
virtual void
FTPresets ();
virtual void
Protocols ();
virtual void
Name ();
virtual void
ShortName (const ::std::string&);
virtual void
LongName (const ::std::string&);
virtual void
Manufacturer (const ::std::string&);
virtual void
Description (const ::std::string&);
virtual void
FixtureTypeID ();
virtual void
Thumbnail (const ::std::string&);
virtual void
RefFT ();
virtual void
post_FixtureType ();
// Parser construction API.
//
void
AttributeDefinitions_parser (::device::AttributeDefinitions_pskel&);
void
Wheels_parser (::device::Wheels_pskel&);
void
PhysicalDescriptions_parser (::device::PhysicalDescriptions_pskel&);
void
Models_parser (::device::Models_pskel&);
void
Geometries_parser (::device::Geometries_pskel&);
void
DMXModes_parser (::device::DMXModes_pskel&);
void
Revisions_parser (::device::Revisions_pskel&);
void
FTPresets_parser (::device::FTPresets_pskel&);
void
Protocols_parser (::device::Protocols_pskel&);
void
Name_parser (::device::nametype_pskel&);
void
ShortName_parser (::xml_schema::string_pskel&);
void
LongName_parser (::xml_schema::string_pskel&);
void
Manufacturer_parser (::xml_schema::string_pskel&);
void
Description_parser (::xml_schema::string_pskel&);
void
FixtureTypeID_parser (::device::guidtype_pskel&);
void
Thumbnail_parser (::xml_schema::string_pskel&);
void
RefFT_parser (::device::guidtype_pskel&);
void
parsers (::device::AttributeDefinitions_pskel& /* AttributeDefinitions */,
::device::Wheels_pskel& /* Wheels */,
::device::PhysicalDescriptions_pskel& /* PhysicalDescriptions */,
::device::Models_pskel& /* Models */,
::device::Geometries_pskel& /* Geometries */,
::device::DMXModes_pskel& /* DMXModes */,
::device::Revisions_pskel& /* Revisions */,
::device::FTPresets_pskel& /* FTPresets */,
::device::Protocols_pskel& /* Protocols */,
::device::nametype_pskel& /* Name */,
::xml_schema::string_pskel& /* ShortName */,
::xml_schema::string_pskel& /* LongName */,
::xml_schema::string_pskel& /* Manufacturer */,
::xml_schema::string_pskel& /* Description */,
::device::guidtype_pskel& /* FixtureTypeID */,
::xml_schema::string_pskel& /* Thumbnail */,
::device::guidtype_pskel& /* RefFT */);
// Constructor.
//
FixtureType_pskel ();
// Implementation.
//
protected:
virtual bool
_start_element_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&,
const ::xml_schema::ro_string*);
virtual bool
_end_element_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&);
virtual bool
_attribute_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&);
protected:
::device::AttributeDefinitions_pskel* AttributeDefinitions_parser_;
::device::Wheels_pskel* Wheels_parser_;
::device::PhysicalDescriptions_pskel* PhysicalDescriptions_parser_;
::device::Models_pskel* Models_parser_;
::device::Geometries_pskel* Geometries_parser_;
::device::DMXModes_pskel* DMXModes_parser_;
::device::Revisions_pskel* Revisions_parser_;
::device::FTPresets_pskel* FTPresets_parser_;
::device::Protocols_pskel* Protocols_parser_;
::device::nametype_pskel* Name_parser_;
::xml_schema::string_pskel* ShortName_parser_;
::xml_schema::string_pskel* LongName_parser_;
::xml_schema::string_pskel* Manufacturer_parser_;
::xml_schema::string_pskel* Description_parser_;
::device::guidtype_pskel* FixtureTypeID_parser_;
::xml_schema::string_pskel* Thumbnail_parser_;
::device::guidtype_pskel* RefFT_parser_;
};
class Wheels_pskel: public ::xml_schema::complex_content
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void
Wheel ();
virtual void
post_Wheels ();
// Parser construction API.
//
void
Wheel_parser (::device::Wheel_pskel&);
void
parsers (::device::Wheel_pskel& /* Wheel */);
// Constructor.
//
Wheels_pskel ();
// Implementation.
//
protected:
virtual bool
_start_element_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&,
const ::xml_schema::ro_string*);
virtual bool
_end_element_impl (const ::xml_schema::ro_string&,
const ::xml_schema::ro_string&);
protected:
::device::Wheel_pskel* Wheel_parser_;
};
class Wheel_pskel: public ::xml_schema::complex_content
{
public:
// Parser callbacks. Override them in your implementation.
//
// virtual void
// pre ();
virtual void