-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTurbulenceService.h
10265 lines (8725 loc) · 594 KB
/
TurbulenceService.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
// Reminder: Modify typemap.dat to customize the header file generated by wsdl2h
/* TurbulenceService.h
Generated by wsdl2h 2.8.91 from http://turbulence.pha.jhu.edu/service/turbulence.asmx?WSDL and typemap.dat
2021-01-14 22:10:33 GMT
DO NOT INCLUDE THIS FILE DIRECTLY INTO YOUR PROJECT BUILDS
USE THE soapcpp2-GENERATED SOURCE CODE FILES FOR YOUR PROJECT BUILDS
gSOAP XML Web services tools
Copyright (C) 2000-2018, Robert van Engelen, Genivia Inc. All Rights Reserved.
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
A commercial use license is available from Genivia Inc., contact@genivia.com
--------------------------------------------------------------------------------
*/
/**
@page page_notes Notes
@note HINTS:
- Run soapcpp2 on TurbulenceService.h to generate the SOAP/XML processing logic:
Use soapcpp2 -I to specify paths for #import
Use soapcpp2 -j to generate improved proxy and server classes.
Use soapcpp2 -r to generate a report.
- Edit 'typemap.dat' to control namespace bindings and type mappings:
It is strongly recommended to customize the names of the namespace prefixes
generated by wsdl2h. To do so, modify the prefix bindings in the Namespaces
section below and add the modified lines to 'typemap.dat' to rerun wsdl2h.
- Run Doxygen (www.doxygen.org) on this file to generate documentation.
- Use wsdl2h -c to generate pure C code.
- Use wsdl2h -R to include the REST operations defined by the WSDLs.
- Use wsdl2h -O3 or -O4 to optimize by removing unused schema components.
- Use wsdl2h -d to enable DOM support for xsd:any and xsd:anyType.
- Use wsdl2h -F to simulate struct-type derivation in C (also works in C++).
- Use wsdl2h -f to generate flat C++ class hierarchy, removes type derivation.
- Use wsdl2h -g to generate top-level root elements with readers and writers.
- Use wsdl2h -U to map XML names to C++ Unicode identifiers instead of _xNNNN.
- Use wsdl2h -u to disable the generation of unions.
- Use wsdl2h -L to remove this @note and all other @note comments.
- Use wsdl2h -nname to use name as the base namespace prefix instead of 'ns'.
- Use wsdl2h -Nname for service prefix and produce multiple service bindings
- Struct/class members serialized as XML attributes are annotated with a '@'.
- Struct/class members that have a special role are annotated with a '$'.
@warning
DO NOT INCLUDE THIS ANNOTATED FILE DIRECTLY IN YOUR PROJECT SOURCE CODE.
USE THE FILES GENERATED BY soapcpp2 FOR YOUR PROJECT'S SOURCE CODE:
THE GENERATED soapStub.h FILE CONTAINS THIS CONTENT WITHOUT ANNOTATIONS.
@copyright LICENSE:
@verbatim
--------------------------------------------------------------------------------
gSOAP XML Web services tools
Copyright (C) 2000-2019, Robert van Engelen, Genivia Inc. All Rights Reserved.
The wsdl2h tool and its generated software are released under the GPL.
This software is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
GPL license.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
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., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA
Author contact information:
engelen@genivia.com / engelen@acm.org
This program is released under the GPL with the additional exemption that
compiling, linking, and/or using OpenSSL is allowed.
--------------------------------------------------------------------------------
A commercial-use license is available from Genivia, Inc., contact@genivia.com
--------------------------------------------------------------------------------
@endverbatim
*/
//gsoapopt c,w
/******************************************************************************\
* *
* Definitions *
* http://turbulence.pha.jhu.edu/ *
* *
\******************************************************************************/
/******************************************************************************\
* *
* Import *
* *
\******************************************************************************/
/******************************************************************************\
* *
* Schema Namespaces *
* *
\******************************************************************************/
/* NOTE:
It is strongly recommended to customize the names of the namespace prefixes
generated by wsdl2h. To do so, modify the prefix bindings below and add the
modified lines to 'typemap.dat' then rerun wsdl2h (use wsdl2h -t typemap.dat):
turb1 = "http://turbulence.pha.jhu.edu/"
*/
#define SOAP_NAMESPACE_OF_turb1 "http://turbulence.pha.jhu.edu/"
//gsoap turb1 schema namespace: http://turbulence.pha.jhu.edu/
//gsoap turb1 schema elementForm: qualified
//gsoap turb1 schema attributeForm: unqualified
/******************************************************************************\
* *
* Built-in Schema Types and Top-Level Elements and Attributes *
* *
\******************************************************************************/
/// Built-in type "xs:base64Binary".
struct xsd__base64Binary
{
unsigned char *__ptr;
int __size;
char *id, *type, *options; // NOTE: non-NULL for DIME/MIME/MTOM XOP attachments only
};
/******************************************************************************\
* *
* Schema Types and Top-Level Elements and Attributes *
* http://turbulence.pha.jhu.edu/ *
* *
\******************************************************************************/
/// @brief "http://turbulence.pha.jhu.edu/":SpatialInterpolation is a simpleType restriction of type xs:string.
///
/// @note The enum values are prefixed with "turb1__SpatialInterpolation__" to prevent name clashes: use wsdl2h option -e to omit this prefix or use option -c++11 for scoped enumerations
enum turb1__SpatialInterpolation
{
turb1__SpatialInterpolation__None, ///< xs:string value="None"
turb1__SpatialInterpolation__None_USCOREFd4, ///< xs:string value="None_Fd4"
turb1__SpatialInterpolation__None_USCOREFd6, ///< xs:string value="None_Fd6"
turb1__SpatialInterpolation__None_USCOREFd8, ///< xs:string value="None_Fd8"
turb1__SpatialInterpolation__Fd4Lag4, ///< xs:string value="Fd4Lag4"
turb1__SpatialInterpolation__Lag4, ///< xs:string value="Lag4"
turb1__SpatialInterpolation__Lag6, ///< xs:string value="Lag6"
turb1__SpatialInterpolation__Lag8, ///< xs:string value="Lag8"
turb1__SpatialInterpolation__M1Q4, ///< xs:string value="M1Q4"
turb1__SpatialInterpolation__M2Q4, ///< xs:string value="M2Q4"
turb1__SpatialInterpolation__M3Q4, ///< xs:string value="M3Q4"
turb1__SpatialInterpolation__M4Q4, ///< xs:string value="M4Q4"
turb1__SpatialInterpolation__M1Q6, ///< xs:string value="M1Q6"
turb1__SpatialInterpolation__M2Q6, ///< xs:string value="M2Q6"
turb1__SpatialInterpolation__M3Q6, ///< xs:string value="M3Q6"
turb1__SpatialInterpolation__M4Q6, ///< xs:string value="M4Q6"
turb1__SpatialInterpolation__M1Q8, ///< xs:string value="M1Q8"
turb1__SpatialInterpolation__M2Q8, ///< xs:string value="M2Q8"
turb1__SpatialInterpolation__M3Q8, ///< xs:string value="M3Q8"
turb1__SpatialInterpolation__M4Q8, ///< xs:string value="M4Q8"
turb1__SpatialInterpolation__M1Q10, ///< xs:string value="M1Q10"
turb1__SpatialInterpolation__M2Q10, ///< xs:string value="M2Q10"
turb1__SpatialInterpolation__M3Q10, ///< xs:string value="M3Q10"
turb1__SpatialInterpolation__M4Q10, ///< xs:string value="M4Q10"
turb1__SpatialInterpolation__M1Q12, ///< xs:string value="M1Q12"
turb1__SpatialInterpolation__M2Q12, ///< xs:string value="M2Q12"
turb1__SpatialInterpolation__M3Q12, ///< xs:string value="M3Q12"
turb1__SpatialInterpolation__M4Q12, ///< xs:string value="M4Q12"
turb1__SpatialInterpolation__M1Q14, ///< xs:string value="M1Q14"
turb1__SpatialInterpolation__M2Q14, ///< xs:string value="M2Q14"
turb1__SpatialInterpolation__M3Q14, ///< xs:string value="M3Q14"
turb1__SpatialInterpolation__M4Q14, ///< xs:string value="M4Q14"
};
/// @brief "http://turbulence.pha.jhu.edu/":TemporalInterpolation is a simpleType restriction of type xs:string.
///
/// @note The enum values are prefixed with "turb1__TemporalInterpolation__" to prevent name clashes: use wsdl2h option -e to omit this prefix or use option -c++11 for scoped enumerations
enum turb1__TemporalInterpolation
{
turb1__TemporalInterpolation__None, ///< xs:string value="None"
turb1__TemporalInterpolation__PCHIP, ///< xs:string value="PCHIP"
};
/******************************************************************************\
* *
* Schema Complex Types and Top-Level Elements *
* http://turbulence.pha.jhu.edu/ *
* *
\******************************************************************************/
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfPoint3 is a complexType.
///
/// @note struct turb1__ArrayOfPoint3 operations:
/// - turb1__ArrayOfPoint3* soap_new_turb1__ArrayOfPoint3(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfPoint3(struct soap*, turb1__ArrayOfPoint3*) default initialize members
/// - int soap_read_turb1__ArrayOfPoint3(struct soap*, turb1__ArrayOfPoint3*) deserialize from a source
/// - int soap_write_turb1__ArrayOfPoint3(struct soap*, turb1__ArrayOfPoint3*) serialize to a sink
/// - turb1__ArrayOfPoint3* soap_dup_turb1__ArrayOfPoint3(struct soap*, turb1__ArrayOfPoint3* dst, turb1__ArrayOfPoint3 *src) returns deep copy of turb1__ArrayOfPoint3 src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfPoint3(turb1__ArrayOfPoint3*) deep deletes turb1__ArrayOfPoint3 data members, use only on dst after soap_dup_turb1__ArrayOfPoint3(NULL, turb1__ArrayOfPoint3 *dst, turb1__ArrayOfPoint3 *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfPoint3
{
/// Size of array of struct turb1__Point3* is 0..unbounded.
$ int __sizePoint3 0;
/// Array struct turb1__Point3* of size 0..unbounded.
struct turb1__Point3* Point3 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":Point3 is a complexType.
///
/// @note struct turb1__Point3 operations:
/// - turb1__Point3* soap_new_turb1__Point3(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__Point3(struct soap*, turb1__Point3*) default initialize members
/// - int soap_read_turb1__Point3(struct soap*, turb1__Point3*) deserialize from a source
/// - int soap_write_turb1__Point3(struct soap*, turb1__Point3*) serialize to a sink
/// - turb1__Point3* soap_dup_turb1__Point3(struct soap*, turb1__Point3* dst, turb1__Point3 *src) returns deep copy of turb1__Point3 src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__Point3(turb1__Point3*) deep deletes turb1__Point3 data members, use only on dst after soap_dup_turb1__Point3(NULL, turb1__Point3 *dst, turb1__Point3 *src) (use soapcpp2 -Ed)
struct turb1__Point3
{
/// Element "x" of type xs:float.
float x 1; ///< Required element.
/// Element "y" of type xs:float.
float y 1; ///< Required element.
/// Element "z" of type xs:float.
float z 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfVector3 is a complexType.
///
/// @note struct turb1__ArrayOfVector3 operations:
/// - turb1__ArrayOfVector3* soap_new_turb1__ArrayOfVector3(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfVector3(struct soap*, turb1__ArrayOfVector3*) default initialize members
/// - int soap_read_turb1__ArrayOfVector3(struct soap*, turb1__ArrayOfVector3*) deserialize from a source
/// - int soap_write_turb1__ArrayOfVector3(struct soap*, turb1__ArrayOfVector3*) serialize to a sink
/// - turb1__ArrayOfVector3* soap_dup_turb1__ArrayOfVector3(struct soap*, turb1__ArrayOfVector3* dst, turb1__ArrayOfVector3 *src) returns deep copy of turb1__ArrayOfVector3 src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfVector3(turb1__ArrayOfVector3*) deep deletes turb1__ArrayOfVector3 data members, use only on dst after soap_dup_turb1__ArrayOfVector3(NULL, turb1__ArrayOfVector3 *dst, turb1__ArrayOfVector3 *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfVector3
{
/// Size of array of struct turb1__Vector3* is 0..unbounded.
$ int __sizeVector3 0;
/// Array struct turb1__Vector3* of size 0..unbounded.
struct turb1__Vector3* Vector3 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":Vector3 is a complexType.
///
/// @note struct turb1__Vector3 operations:
/// - turb1__Vector3* soap_new_turb1__Vector3(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__Vector3(struct soap*, turb1__Vector3*) default initialize members
/// - int soap_read_turb1__Vector3(struct soap*, turb1__Vector3*) deserialize from a source
/// - int soap_write_turb1__Vector3(struct soap*, turb1__Vector3*) serialize to a sink
/// - turb1__Vector3* soap_dup_turb1__Vector3(struct soap*, turb1__Vector3* dst, turb1__Vector3 *src) returns deep copy of turb1__Vector3 src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__Vector3(turb1__Vector3*) deep deletes turb1__Vector3 data members, use only on dst after soap_dup_turb1__Vector3(NULL, turb1__Vector3 *dst, turb1__Vector3 *src) (use soapcpp2 -Ed)
struct turb1__Vector3
{
/// Element "x" of type xs:float.
float x 1; ///< Required element.
/// Element "y" of type xs:float.
float y 1; ///< Required element.
/// Element "z" of type xs:float.
float z 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfPressure is a complexType.
///
/// @note struct turb1__ArrayOfPressure operations:
/// - turb1__ArrayOfPressure* soap_new_turb1__ArrayOfPressure(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfPressure(struct soap*, turb1__ArrayOfPressure*) default initialize members
/// - int soap_read_turb1__ArrayOfPressure(struct soap*, turb1__ArrayOfPressure*) deserialize from a source
/// - int soap_write_turb1__ArrayOfPressure(struct soap*, turb1__ArrayOfPressure*) serialize to a sink
/// - turb1__ArrayOfPressure* soap_dup_turb1__ArrayOfPressure(struct soap*, turb1__ArrayOfPressure* dst, turb1__ArrayOfPressure *src) returns deep copy of turb1__ArrayOfPressure src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfPressure(turb1__ArrayOfPressure*) deep deletes turb1__ArrayOfPressure data members, use only on dst after soap_dup_turb1__ArrayOfPressure(NULL, turb1__ArrayOfPressure *dst, turb1__ArrayOfPressure *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfPressure
{
/// Size of array of struct turb1__Pressure* is 0..unbounded.
$ int __sizePressure 0;
/// Array struct turb1__Pressure* of size 0..unbounded.
struct turb1__Pressure* Pressure 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":Pressure is a complexType.
///
/// @note struct turb1__Pressure operations:
/// - turb1__Pressure* soap_new_turb1__Pressure(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__Pressure(struct soap*, turb1__Pressure*) default initialize members
/// - int soap_read_turb1__Pressure(struct soap*, turb1__Pressure*) deserialize from a source
/// - int soap_write_turb1__Pressure(struct soap*, turb1__Pressure*) serialize to a sink
/// - turb1__Pressure* soap_dup_turb1__Pressure(struct soap*, turb1__Pressure* dst, turb1__Pressure *src) returns deep copy of turb1__Pressure src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__Pressure(turb1__Pressure*) deep deletes turb1__Pressure data members, use only on dst after soap_dup_turb1__Pressure(NULL, turb1__Pressure *dst, turb1__Pressure *src) (use soapcpp2 -Ed)
struct turb1__Pressure
{
/// Element "p" of type xs:float.
float p 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfVector3P is a complexType.
///
/// @note struct turb1__ArrayOfVector3P operations:
/// - turb1__ArrayOfVector3P* soap_new_turb1__ArrayOfVector3P(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfVector3P(struct soap*, turb1__ArrayOfVector3P*) default initialize members
/// - int soap_read_turb1__ArrayOfVector3P(struct soap*, turb1__ArrayOfVector3P*) deserialize from a source
/// - int soap_write_turb1__ArrayOfVector3P(struct soap*, turb1__ArrayOfVector3P*) serialize to a sink
/// - turb1__ArrayOfVector3P* soap_dup_turb1__ArrayOfVector3P(struct soap*, turb1__ArrayOfVector3P* dst, turb1__ArrayOfVector3P *src) returns deep copy of turb1__ArrayOfVector3P src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfVector3P(turb1__ArrayOfVector3P*) deep deletes turb1__ArrayOfVector3P data members, use only on dst after soap_dup_turb1__ArrayOfVector3P(NULL, turb1__ArrayOfVector3P *dst, turb1__ArrayOfVector3P *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfVector3P
{
/// Size of array of struct turb1__Vector3P* is 0..unbounded.
$ int __sizeVector3P 0;
/// Array struct turb1__Vector3P* of size 0..unbounded.
struct turb1__Vector3P* Vector3P 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":Vector3P is a complexType.
///
/// @note struct turb1__Vector3P operations:
/// - turb1__Vector3P* soap_new_turb1__Vector3P(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__Vector3P(struct soap*, turb1__Vector3P*) default initialize members
/// - int soap_read_turb1__Vector3P(struct soap*, turb1__Vector3P*) deserialize from a source
/// - int soap_write_turb1__Vector3P(struct soap*, turb1__Vector3P*) serialize to a sink
/// - turb1__Vector3P* soap_dup_turb1__Vector3P(struct soap*, turb1__Vector3P* dst, turb1__Vector3P *src) returns deep copy of turb1__Vector3P src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__Vector3P(turb1__Vector3P*) deep deletes turb1__Vector3P data members, use only on dst after soap_dup_turb1__Vector3P(NULL, turb1__Vector3P *dst, turb1__Vector3P *src) (use soapcpp2 -Ed)
struct turb1__Vector3P
{
/// Element "x" of type xs:float.
float x 1; ///< Required element.
/// Element "y" of type xs:float.
float y 1; ///< Required element.
/// Element "z" of type xs:float.
float z 1; ///< Required element.
/// Element "p" of type xs:float.
float p 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfVelocityGradient is a complexType.
///
/// @note struct turb1__ArrayOfVelocityGradient operations:
/// - turb1__ArrayOfVelocityGradient* soap_new_turb1__ArrayOfVelocityGradient(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfVelocityGradient(struct soap*, turb1__ArrayOfVelocityGradient*) default initialize members
/// - int soap_read_turb1__ArrayOfVelocityGradient(struct soap*, turb1__ArrayOfVelocityGradient*) deserialize from a source
/// - int soap_write_turb1__ArrayOfVelocityGradient(struct soap*, turb1__ArrayOfVelocityGradient*) serialize to a sink
/// - turb1__ArrayOfVelocityGradient* soap_dup_turb1__ArrayOfVelocityGradient(struct soap*, turb1__ArrayOfVelocityGradient* dst, turb1__ArrayOfVelocityGradient *src) returns deep copy of turb1__ArrayOfVelocityGradient src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfVelocityGradient(turb1__ArrayOfVelocityGradient*) deep deletes turb1__ArrayOfVelocityGradient data members, use only on dst after soap_dup_turb1__ArrayOfVelocityGradient(NULL, turb1__ArrayOfVelocityGradient *dst, turb1__ArrayOfVelocityGradient *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfVelocityGradient
{
/// Size of array of struct turb1__VelocityGradient* is 0..unbounded.
$ int __sizeVelocityGradient 0;
/// Array struct turb1__VelocityGradient* of size 0..unbounded.
struct turb1__VelocityGradient* VelocityGradient 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":VelocityGradient is a complexType.
///
/// @note struct turb1__VelocityGradient operations:
/// - turb1__VelocityGradient* soap_new_turb1__VelocityGradient(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__VelocityGradient(struct soap*, turb1__VelocityGradient*) default initialize members
/// - int soap_read_turb1__VelocityGradient(struct soap*, turb1__VelocityGradient*) deserialize from a source
/// - int soap_write_turb1__VelocityGradient(struct soap*, turb1__VelocityGradient*) serialize to a sink
/// - turb1__VelocityGradient* soap_dup_turb1__VelocityGradient(struct soap*, turb1__VelocityGradient* dst, turb1__VelocityGradient *src) returns deep copy of turb1__VelocityGradient src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__VelocityGradient(turb1__VelocityGradient*) deep deletes turb1__VelocityGradient data members, use only on dst after soap_dup_turb1__VelocityGradient(NULL, turb1__VelocityGradient *dst, turb1__VelocityGradient *src) (use soapcpp2 -Ed)
struct turb1__VelocityGradient
{
/// Element "duxdx" of type xs:float.
float duxdx 1; ///< Required element.
/// Element "duxdy" of type xs:float.
float duxdy 1; ///< Required element.
/// Element "duxdz" of type xs:float.
float duxdz 1; ///< Required element.
/// Element "duydx" of type xs:float.
float duydx 1; ///< Required element.
/// Element "duydy" of type xs:float.
float duydy 1; ///< Required element.
/// Element "duydz" of type xs:float.
float duydz 1; ///< Required element.
/// Element "duzdx" of type xs:float.
float duzdx 1; ///< Required element.
/// Element "duzdy" of type xs:float.
float duzdy 1; ///< Required element.
/// Element "duzdz" of type xs:float.
float duzdz 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfVelocityHessian is a complexType.
///
/// @note struct turb1__ArrayOfVelocityHessian operations:
/// - turb1__ArrayOfVelocityHessian* soap_new_turb1__ArrayOfVelocityHessian(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfVelocityHessian(struct soap*, turb1__ArrayOfVelocityHessian*) default initialize members
/// - int soap_read_turb1__ArrayOfVelocityHessian(struct soap*, turb1__ArrayOfVelocityHessian*) deserialize from a source
/// - int soap_write_turb1__ArrayOfVelocityHessian(struct soap*, turb1__ArrayOfVelocityHessian*) serialize to a sink
/// - turb1__ArrayOfVelocityHessian* soap_dup_turb1__ArrayOfVelocityHessian(struct soap*, turb1__ArrayOfVelocityHessian* dst, turb1__ArrayOfVelocityHessian *src) returns deep copy of turb1__ArrayOfVelocityHessian src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfVelocityHessian(turb1__ArrayOfVelocityHessian*) deep deletes turb1__ArrayOfVelocityHessian data members, use only on dst after soap_dup_turb1__ArrayOfVelocityHessian(NULL, turb1__ArrayOfVelocityHessian *dst, turb1__ArrayOfVelocityHessian *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfVelocityHessian
{
/// Size of array of struct turb1__VelocityHessian* is 0..unbounded.
$ int __sizeVelocityHessian 0;
/// Array struct turb1__VelocityHessian* of size 0..unbounded.
struct turb1__VelocityHessian* VelocityHessian 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":VelocityHessian is a complexType.
///
/// @note struct turb1__VelocityHessian operations:
/// - turb1__VelocityHessian* soap_new_turb1__VelocityHessian(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__VelocityHessian(struct soap*, turb1__VelocityHessian*) default initialize members
/// - int soap_read_turb1__VelocityHessian(struct soap*, turb1__VelocityHessian*) deserialize from a source
/// - int soap_write_turb1__VelocityHessian(struct soap*, turb1__VelocityHessian*) serialize to a sink
/// - turb1__VelocityHessian* soap_dup_turb1__VelocityHessian(struct soap*, turb1__VelocityHessian* dst, turb1__VelocityHessian *src) returns deep copy of turb1__VelocityHessian src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__VelocityHessian(turb1__VelocityHessian*) deep deletes turb1__VelocityHessian data members, use only on dst after soap_dup_turb1__VelocityHessian(NULL, turb1__VelocityHessian *dst, turb1__VelocityHessian *src) (use soapcpp2 -Ed)
struct turb1__VelocityHessian
{
/// Element "d2uxdxdx" of type xs:float.
float d2uxdxdx 1; ///< Required element.
/// Element "d2uxdxdy" of type xs:float.
float d2uxdxdy 1; ///< Required element.
/// Element "d2uxdxdz" of type xs:float.
float d2uxdxdz 1; ///< Required element.
/// Element "d2uxdydy" of type xs:float.
float d2uxdydy 1; ///< Required element.
/// Element "d2uxdydz" of type xs:float.
float d2uxdydz 1; ///< Required element.
/// Element "d2uxdzdz" of type xs:float.
float d2uxdzdz 1; ///< Required element.
/// Element "d2uydxdx" of type xs:float.
float d2uydxdx 1; ///< Required element.
/// Element "d2uydxdy" of type xs:float.
float d2uydxdy 1; ///< Required element.
/// Element "d2uydxdz" of type xs:float.
float d2uydxdz 1; ///< Required element.
/// Element "d2uydydy" of type xs:float.
float d2uydydy 1; ///< Required element.
/// Element "d2uydydz" of type xs:float.
float d2uydydz 1; ///< Required element.
/// Element "d2uydzdz" of type xs:float.
float d2uydzdz 1; ///< Required element.
/// Element "d2uzdxdx" of type xs:float.
float d2uzdxdx 1; ///< Required element.
/// Element "d2uzdxdy" of type xs:float.
float d2uzdxdy 1; ///< Required element.
/// Element "d2uzdxdz" of type xs:float.
float d2uzdxdz 1; ///< Required element.
/// Element "d2uzdydy" of type xs:float.
float d2uzdydy 1; ///< Required element.
/// Element "d2uzdydz" of type xs:float.
float d2uzdydz 1; ///< Required element.
/// Element "d2uzdzdz" of type xs:float.
float d2uzdzdz 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfPressureHessian is a complexType.
///
/// @note struct turb1__ArrayOfPressureHessian operations:
/// - turb1__ArrayOfPressureHessian* soap_new_turb1__ArrayOfPressureHessian(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfPressureHessian(struct soap*, turb1__ArrayOfPressureHessian*) default initialize members
/// - int soap_read_turb1__ArrayOfPressureHessian(struct soap*, turb1__ArrayOfPressureHessian*) deserialize from a source
/// - int soap_write_turb1__ArrayOfPressureHessian(struct soap*, turb1__ArrayOfPressureHessian*) serialize to a sink
/// - turb1__ArrayOfPressureHessian* soap_dup_turb1__ArrayOfPressureHessian(struct soap*, turb1__ArrayOfPressureHessian* dst, turb1__ArrayOfPressureHessian *src) returns deep copy of turb1__ArrayOfPressureHessian src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfPressureHessian(turb1__ArrayOfPressureHessian*) deep deletes turb1__ArrayOfPressureHessian data members, use only on dst after soap_dup_turb1__ArrayOfPressureHessian(NULL, turb1__ArrayOfPressureHessian *dst, turb1__ArrayOfPressureHessian *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfPressureHessian
{
/// Size of array of struct turb1__PressureHessian* is 0..unbounded.
$ int __sizePressureHessian 0;
/// Array struct turb1__PressureHessian* of size 0..unbounded.
struct turb1__PressureHessian* PressureHessian 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":PressureHessian is a complexType.
///
/// @note struct turb1__PressureHessian operations:
/// - turb1__PressureHessian* soap_new_turb1__PressureHessian(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__PressureHessian(struct soap*, turb1__PressureHessian*) default initialize members
/// - int soap_read_turb1__PressureHessian(struct soap*, turb1__PressureHessian*) deserialize from a source
/// - int soap_write_turb1__PressureHessian(struct soap*, turb1__PressureHessian*) serialize to a sink
/// - turb1__PressureHessian* soap_dup_turb1__PressureHessian(struct soap*, turb1__PressureHessian* dst, turb1__PressureHessian *src) returns deep copy of turb1__PressureHessian src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__PressureHessian(turb1__PressureHessian*) deep deletes turb1__PressureHessian data members, use only on dst after soap_dup_turb1__PressureHessian(NULL, turb1__PressureHessian *dst, turb1__PressureHessian *src) (use soapcpp2 -Ed)
struct turb1__PressureHessian
{
/// Element "d2pdxdx" of type xs:float.
float d2pdxdx 1; ///< Required element.
/// Element "d2pdxdy" of type xs:float.
float d2pdxdy 1; ///< Required element.
/// Element "d2pdxdz" of type xs:float.
float d2pdxdz 1; ///< Required element.
/// Element "d2pdydy" of type xs:float.
float d2pdydy 1; ///< Required element.
/// Element "d2pdydz" of type xs:float.
float d2pdydz 1; ///< Required element.
/// Element "d2pdzdz" of type xs:float.
float d2pdzdz 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfThresholdInfo is a complexType.
///
/// @note struct turb1__ArrayOfThresholdInfo operations:
/// - turb1__ArrayOfThresholdInfo* soap_new_turb1__ArrayOfThresholdInfo(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfThresholdInfo(struct soap*, turb1__ArrayOfThresholdInfo*) default initialize members
/// - int soap_read_turb1__ArrayOfThresholdInfo(struct soap*, turb1__ArrayOfThresholdInfo*) deserialize from a source
/// - int soap_write_turb1__ArrayOfThresholdInfo(struct soap*, turb1__ArrayOfThresholdInfo*) serialize to a sink
/// - turb1__ArrayOfThresholdInfo* soap_dup_turb1__ArrayOfThresholdInfo(struct soap*, turb1__ArrayOfThresholdInfo* dst, turb1__ArrayOfThresholdInfo *src) returns deep copy of turb1__ArrayOfThresholdInfo src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfThresholdInfo(turb1__ArrayOfThresholdInfo*) deep deletes turb1__ArrayOfThresholdInfo data members, use only on dst after soap_dup_turb1__ArrayOfThresholdInfo(NULL, turb1__ArrayOfThresholdInfo *dst, turb1__ArrayOfThresholdInfo *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfThresholdInfo
{
/// Size of array of struct turb1__ThresholdInfo* is 0..unbounded.
$ int __sizeThresholdInfo 0;
/// Array struct turb1__ThresholdInfo* of size 0..unbounded.
struct turb1__ThresholdInfo* ThresholdInfo 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":ThresholdInfo is a complexType.
///
/// @note struct turb1__ThresholdInfo operations:
/// - turb1__ThresholdInfo* soap_new_turb1__ThresholdInfo(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ThresholdInfo(struct soap*, turb1__ThresholdInfo*) default initialize members
/// - int soap_read_turb1__ThresholdInfo(struct soap*, turb1__ThresholdInfo*) deserialize from a source
/// - int soap_write_turb1__ThresholdInfo(struct soap*, turb1__ThresholdInfo*) serialize to a sink
/// - turb1__ThresholdInfo* soap_dup_turb1__ThresholdInfo(struct soap*, turb1__ThresholdInfo* dst, turb1__ThresholdInfo *src) returns deep copy of turb1__ThresholdInfo src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ThresholdInfo(turb1__ThresholdInfo*) deep deletes turb1__ThresholdInfo data members, use only on dst after soap_dup_turb1__ThresholdInfo(NULL, turb1__ThresholdInfo *dst, turb1__ThresholdInfo *src) (use soapcpp2 -Ed)
struct turb1__ThresholdInfo
{
/// Element "x" of type xs:int.
int x 1; ///< Required element.
/// Element "y" of type xs:int.
int y 1; ///< Required element.
/// Element "z" of type xs:int.
int z 1; ///< Required element.
/// Element "value" of type xs:float.
float value 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfSGSTensor is a complexType.
///
/// @note struct turb1__ArrayOfSGSTensor operations:
/// - turb1__ArrayOfSGSTensor* soap_new_turb1__ArrayOfSGSTensor(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfSGSTensor(struct soap*, turb1__ArrayOfSGSTensor*) default initialize members
/// - int soap_read_turb1__ArrayOfSGSTensor(struct soap*, turb1__ArrayOfSGSTensor*) deserialize from a source
/// - int soap_write_turb1__ArrayOfSGSTensor(struct soap*, turb1__ArrayOfSGSTensor*) serialize to a sink
/// - turb1__ArrayOfSGSTensor* soap_dup_turb1__ArrayOfSGSTensor(struct soap*, turb1__ArrayOfSGSTensor* dst, turb1__ArrayOfSGSTensor *src) returns deep copy of turb1__ArrayOfSGSTensor src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfSGSTensor(turb1__ArrayOfSGSTensor*) deep deletes turb1__ArrayOfSGSTensor data members, use only on dst after soap_dup_turb1__ArrayOfSGSTensor(NULL, turb1__ArrayOfSGSTensor *dst, turb1__ArrayOfSGSTensor *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfSGSTensor
{
/// Size of array of struct turb1__SGSTensor* is 0..unbounded.
$ int __sizeSGSTensor 0;
/// Array struct turb1__SGSTensor* of size 0..unbounded.
struct turb1__SGSTensor* SGSTensor 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":SGSTensor is a complexType.
///
/// @note struct turb1__SGSTensor operations:
/// - turb1__SGSTensor* soap_new_turb1__SGSTensor(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__SGSTensor(struct soap*, turb1__SGSTensor*) default initialize members
/// - int soap_read_turb1__SGSTensor(struct soap*, turb1__SGSTensor*) deserialize from a source
/// - int soap_write_turb1__SGSTensor(struct soap*, turb1__SGSTensor*) serialize to a sink
/// - turb1__SGSTensor* soap_dup_turb1__SGSTensor(struct soap*, turb1__SGSTensor* dst, turb1__SGSTensor *src) returns deep copy of turb1__SGSTensor src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__SGSTensor(turb1__SGSTensor*) deep deletes turb1__SGSTensor data members, use only on dst after soap_dup_turb1__SGSTensor(NULL, turb1__SGSTensor *dst, turb1__SGSTensor *src) (use soapcpp2 -Ed)
struct turb1__SGSTensor
{
/// Element "xx" of type xs:float.
float xx 1; ///< Required element.
/// Element "yy" of type xs:float.
float yy 1; ///< Required element.
/// Element "zz" of type xs:float.
float zz 1; ///< Required element.
/// Element "xy" of type xs:float.
float xy 1; ///< Required element.
/// Element "xz" of type xs:float.
float xz 1; ///< Required element.
/// Element "yz" of type xs:float.
float yz 1; ///< Required element.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfFloat is a complexType.
///
/// @note struct turb1__ArrayOfFloat operations:
/// - turb1__ArrayOfFloat* soap_new_turb1__ArrayOfFloat(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfFloat(struct soap*, turb1__ArrayOfFloat*) default initialize members
/// - int soap_read_turb1__ArrayOfFloat(struct soap*, turb1__ArrayOfFloat*) deserialize from a source
/// - int soap_write_turb1__ArrayOfFloat(struct soap*, turb1__ArrayOfFloat*) serialize to a sink
/// - turb1__ArrayOfFloat* soap_dup_turb1__ArrayOfFloat(struct soap*, turb1__ArrayOfFloat* dst, turb1__ArrayOfFloat *src) returns deep copy of turb1__ArrayOfFloat src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfFloat(turb1__ArrayOfFloat*) deep deletes turb1__ArrayOfFloat data members, use only on dst after soap_dup_turb1__ArrayOfFloat(NULL, turb1__ArrayOfFloat *dst, turb1__ArrayOfFloat *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfFloat
{
/// Size of array of float* is 0..unbounded.
$ int __sizefloat_ 0;
/// Array float* of size 0..unbounded.
float* float_ 0; ///< Multiple elements.
};
/// @brief "http://turbulence.pha.jhu.edu/":ArrayOfArrayOfFloat is a complexType.
///
/// @note struct turb1__ArrayOfArrayOfFloat operations:
/// - turb1__ArrayOfArrayOfFloat* soap_new_turb1__ArrayOfArrayOfFloat(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default_turb1__ArrayOfArrayOfFloat(struct soap*, turb1__ArrayOfArrayOfFloat*) default initialize members
/// - int soap_read_turb1__ArrayOfArrayOfFloat(struct soap*, turb1__ArrayOfArrayOfFloat*) deserialize from a source
/// - int soap_write_turb1__ArrayOfArrayOfFloat(struct soap*, turb1__ArrayOfArrayOfFloat*) serialize to a sink
/// - turb1__ArrayOfArrayOfFloat* soap_dup_turb1__ArrayOfArrayOfFloat(struct soap*, turb1__ArrayOfArrayOfFloat* dst, turb1__ArrayOfArrayOfFloat *src) returns deep copy of turb1__ArrayOfArrayOfFloat src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del_turb1__ArrayOfArrayOfFloat(turb1__ArrayOfArrayOfFloat*) deep deletes turb1__ArrayOfArrayOfFloat data members, use only on dst after soap_dup_turb1__ArrayOfArrayOfFloat(NULL, turb1__ArrayOfArrayOfFloat *dst, turb1__ArrayOfArrayOfFloat *src) (use soapcpp2 -Ed)
struct turb1__ArrayOfArrayOfFloat
{
/// Size of array of struct turb1__ArrayOfFloat* is 0..unbounded.
$ int __sizeArrayOfFloat 0;
/// Array struct turb1__ArrayOfFloat* of size 0..unbounded.
struct turb1__ArrayOfFloat* ArrayOfFloat 0; ///< Multiple elements.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":NullOp
/// @brief "http://turbulence.pha.jhu.edu/":NullOp is a complexType.
///
/// @note struct _turb1__NullOp operations:
/// - _turb1__NullOp* soap_new__turb1__NullOp(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__NullOp(struct soap*, _turb1__NullOp*) default initialize members
/// - int soap_read__turb1__NullOp(struct soap*, _turb1__NullOp*) deserialize from a source
/// - int soap_write__turb1__NullOp(struct soap*, _turb1__NullOp*) serialize to a sink
/// - _turb1__NullOp* soap_dup__turb1__NullOp(struct soap*, _turb1__NullOp* dst, _turb1__NullOp *src) returns deep copy of _turb1__NullOp src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__NullOp(_turb1__NullOp*) deep deletes _turb1__NullOp data members, use only on dst after soap_dup__turb1__NullOp(NULL, _turb1__NullOp *dst, _turb1__NullOp *src) (use soapcpp2 -Ed)
struct _turb1__NullOp
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":NullOpResponse
/// @brief "http://turbulence.pha.jhu.edu/":NullOpResponse is a complexType.
///
/// @note struct _turb1__NullOpResponse operations:
/// - _turb1__NullOpResponse* soap_new__turb1__NullOpResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__NullOpResponse(struct soap*, _turb1__NullOpResponse*) default initialize members
/// - int soap_read__turb1__NullOpResponse(struct soap*, _turb1__NullOpResponse*) deserialize from a source
/// - int soap_write__turb1__NullOpResponse(struct soap*, _turb1__NullOpResponse*) serialize to a sink
/// - _turb1__NullOpResponse* soap_dup__turb1__NullOpResponse(struct soap*, _turb1__NullOpResponse* dst, _turb1__NullOpResponse *src) returns deep copy of _turb1__NullOpResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__NullOpResponse(_turb1__NullOpResponse*) deep deletes _turb1__NullOpResponse data members, use only on dst after soap_dup__turb1__NullOpResponse(NULL, _turb1__NullOpResponse *dst, _turb1__NullOpResponse *src) (use soapcpp2 -Ed)
struct _turb1__NullOpResponse
{
/// Element "NullOpResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfVector3.
struct turb1__ArrayOfVector3* NullOpResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVelocity
/// @brief "http://turbulence.pha.jhu.edu/":GetVelocity is a complexType.
///
/// @note struct _turb1__GetVelocity operations:
/// - _turb1__GetVelocity* soap_new__turb1__GetVelocity(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVelocity(struct soap*, _turb1__GetVelocity*) default initialize members
/// - int soap_read__turb1__GetVelocity(struct soap*, _turb1__GetVelocity*) deserialize from a source
/// - int soap_write__turb1__GetVelocity(struct soap*, _turb1__GetVelocity*) serialize to a sink
/// - _turb1__GetVelocity* soap_dup__turb1__GetVelocity(struct soap*, _turb1__GetVelocity* dst, _turb1__GetVelocity *src) returns deep copy of _turb1__GetVelocity src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVelocity(_turb1__GetVelocity*) deep deletes _turb1__GetVelocity data members, use only on dst after soap_dup__turb1__GetVelocity(NULL, _turb1__GetVelocity *dst, _turb1__GetVelocity *src) (use soapcpp2 -Ed)
struct _turb1__GetVelocity
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVelocityResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetVelocityResponse is a complexType.
///
/// @note struct _turb1__GetVelocityResponse operations:
/// - _turb1__GetVelocityResponse* soap_new__turb1__GetVelocityResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVelocityResponse(struct soap*, _turb1__GetVelocityResponse*) default initialize members
/// - int soap_read__turb1__GetVelocityResponse(struct soap*, _turb1__GetVelocityResponse*) deserialize from a source
/// - int soap_write__turb1__GetVelocityResponse(struct soap*, _turb1__GetVelocityResponse*) serialize to a sink
/// - _turb1__GetVelocityResponse* soap_dup__turb1__GetVelocityResponse(struct soap*, _turb1__GetVelocityResponse* dst, _turb1__GetVelocityResponse *src) returns deep copy of _turb1__GetVelocityResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVelocityResponse(_turb1__GetVelocityResponse*) deep deletes _turb1__GetVelocityResponse data members, use only on dst after soap_dup__turb1__GetVelocityResponse(NULL, _turb1__GetVelocityResponse *dst, _turb1__GetVelocityResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetVelocityResponse
{
/// Element "GetVelocityResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfVector3.
struct turb1__ArrayOfVector3* GetVelocityResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetMagneticField
/// @brief "http://turbulence.pha.jhu.edu/":GetMagneticField is a complexType.
///
/// @note struct _turb1__GetMagneticField operations:
/// - _turb1__GetMagneticField* soap_new__turb1__GetMagneticField(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetMagneticField(struct soap*, _turb1__GetMagneticField*) default initialize members
/// - int soap_read__turb1__GetMagneticField(struct soap*, _turb1__GetMagneticField*) deserialize from a source
/// - int soap_write__turb1__GetMagneticField(struct soap*, _turb1__GetMagneticField*) serialize to a sink
/// - _turb1__GetMagneticField* soap_dup__turb1__GetMagneticField(struct soap*, _turb1__GetMagneticField* dst, _turb1__GetMagneticField *src) returns deep copy of _turb1__GetMagneticField src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetMagneticField(_turb1__GetMagneticField*) deep deletes _turb1__GetMagneticField data members, use only on dst after soap_dup__turb1__GetMagneticField(NULL, _turb1__GetMagneticField *dst, _turb1__GetMagneticField *src) (use soapcpp2 -Ed)
struct _turb1__GetMagneticField
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetMagneticFieldResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetMagneticFieldResponse is a complexType.
///
/// @note struct _turb1__GetMagneticFieldResponse operations:
/// - _turb1__GetMagneticFieldResponse* soap_new__turb1__GetMagneticFieldResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetMagneticFieldResponse(struct soap*, _turb1__GetMagneticFieldResponse*) default initialize members
/// - int soap_read__turb1__GetMagneticFieldResponse(struct soap*, _turb1__GetMagneticFieldResponse*) deserialize from a source
/// - int soap_write__turb1__GetMagneticFieldResponse(struct soap*, _turb1__GetMagneticFieldResponse*) serialize to a sink
/// - _turb1__GetMagneticFieldResponse* soap_dup__turb1__GetMagneticFieldResponse(struct soap*, _turb1__GetMagneticFieldResponse* dst, _turb1__GetMagneticFieldResponse *src) returns deep copy of _turb1__GetMagneticFieldResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetMagneticFieldResponse(_turb1__GetMagneticFieldResponse*) deep deletes _turb1__GetMagneticFieldResponse data members, use only on dst after soap_dup__turb1__GetMagneticFieldResponse(NULL, _turb1__GetMagneticFieldResponse *dst, _turb1__GetMagneticFieldResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetMagneticFieldResponse
{
/// Element "GetMagneticFieldResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfVector3.
struct turb1__ArrayOfVector3* GetMagneticFieldResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVectorPotential
/// @brief "http://turbulence.pha.jhu.edu/":GetVectorPotential is a complexType.
///
/// @note struct _turb1__GetVectorPotential operations:
/// - _turb1__GetVectorPotential* soap_new__turb1__GetVectorPotential(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVectorPotential(struct soap*, _turb1__GetVectorPotential*) default initialize members
/// - int soap_read__turb1__GetVectorPotential(struct soap*, _turb1__GetVectorPotential*) deserialize from a source
/// - int soap_write__turb1__GetVectorPotential(struct soap*, _turb1__GetVectorPotential*) serialize to a sink
/// - _turb1__GetVectorPotential* soap_dup__turb1__GetVectorPotential(struct soap*, _turb1__GetVectorPotential* dst, _turb1__GetVectorPotential *src) returns deep copy of _turb1__GetVectorPotential src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVectorPotential(_turb1__GetVectorPotential*) deep deletes _turb1__GetVectorPotential data members, use only on dst after soap_dup__turb1__GetVectorPotential(NULL, _turb1__GetVectorPotential *dst, _turb1__GetVectorPotential *src) (use soapcpp2 -Ed)
struct _turb1__GetVectorPotential
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVectorPotentialResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetVectorPotentialResponse is a complexType.
///
/// @note struct _turb1__GetVectorPotentialResponse operations:
/// - _turb1__GetVectorPotentialResponse* soap_new__turb1__GetVectorPotentialResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVectorPotentialResponse(struct soap*, _turb1__GetVectorPotentialResponse*) default initialize members
/// - int soap_read__turb1__GetVectorPotentialResponse(struct soap*, _turb1__GetVectorPotentialResponse*) deserialize from a source
/// - int soap_write__turb1__GetVectorPotentialResponse(struct soap*, _turb1__GetVectorPotentialResponse*) serialize to a sink
/// - _turb1__GetVectorPotentialResponse* soap_dup__turb1__GetVectorPotentialResponse(struct soap*, _turb1__GetVectorPotentialResponse* dst, _turb1__GetVectorPotentialResponse *src) returns deep copy of _turb1__GetVectorPotentialResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVectorPotentialResponse(_turb1__GetVectorPotentialResponse*) deep deletes _turb1__GetVectorPotentialResponse data members, use only on dst after soap_dup__turb1__GetVectorPotentialResponse(NULL, _turb1__GetVectorPotentialResponse *dst, _turb1__GetVectorPotentialResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetVectorPotentialResponse
{
/// Element "GetVectorPotentialResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfVector3.
struct turb1__ArrayOfVector3* GetVectorPotentialResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetPressure
/// @brief "http://turbulence.pha.jhu.edu/":GetPressure is a complexType.
///
/// @note struct _turb1__GetPressure operations:
/// - _turb1__GetPressure* soap_new__turb1__GetPressure(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetPressure(struct soap*, _turb1__GetPressure*) default initialize members
/// - int soap_read__turb1__GetPressure(struct soap*, _turb1__GetPressure*) deserialize from a source
/// - int soap_write__turb1__GetPressure(struct soap*, _turb1__GetPressure*) serialize to a sink
/// - _turb1__GetPressure* soap_dup__turb1__GetPressure(struct soap*, _turb1__GetPressure* dst, _turb1__GetPressure *src) returns deep copy of _turb1__GetPressure src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetPressure(_turb1__GetPressure*) deep deletes _turb1__GetPressure data members, use only on dst after soap_dup__turb1__GetPressure(NULL, _turb1__GetPressure *dst, _turb1__GetPressure *src) (use soapcpp2 -Ed)
struct _turb1__GetPressure
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetPressureResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetPressureResponse is a complexType.
///
/// @note struct _turb1__GetPressureResponse operations:
/// - _turb1__GetPressureResponse* soap_new__turb1__GetPressureResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetPressureResponse(struct soap*, _turb1__GetPressureResponse*) default initialize members
/// - int soap_read__turb1__GetPressureResponse(struct soap*, _turb1__GetPressureResponse*) deserialize from a source
/// - int soap_write__turb1__GetPressureResponse(struct soap*, _turb1__GetPressureResponse*) serialize to a sink
/// - _turb1__GetPressureResponse* soap_dup__turb1__GetPressureResponse(struct soap*, _turb1__GetPressureResponse* dst, _turb1__GetPressureResponse *src) returns deep copy of _turb1__GetPressureResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetPressureResponse(_turb1__GetPressureResponse*) deep deletes _turb1__GetPressureResponse data members, use only on dst after soap_dup__turb1__GetPressureResponse(NULL, _turb1__GetPressureResponse *dst, _turb1__GetPressureResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetPressureResponse
{
/// Element "GetPressureResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfPressure.
struct turb1__ArrayOfPressure* GetPressureResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetDensity
/// @brief "http://turbulence.pha.jhu.edu/":GetDensity is a complexType.
///
/// @note struct _turb1__GetDensity operations:
/// - _turb1__GetDensity* soap_new__turb1__GetDensity(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetDensity(struct soap*, _turb1__GetDensity*) default initialize members
/// - int soap_read__turb1__GetDensity(struct soap*, _turb1__GetDensity*) deserialize from a source
/// - int soap_write__turb1__GetDensity(struct soap*, _turb1__GetDensity*) serialize to a sink
/// - _turb1__GetDensity* soap_dup__turb1__GetDensity(struct soap*, _turb1__GetDensity* dst, _turb1__GetDensity *src) returns deep copy of _turb1__GetDensity src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetDensity(_turb1__GetDensity*) deep deletes _turb1__GetDensity data members, use only on dst after soap_dup__turb1__GetDensity(NULL, _turb1__GetDensity *dst, _turb1__GetDensity *src) (use soapcpp2 -Ed)
struct _turb1__GetDensity
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetDensityResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetDensityResponse is a complexType.
///
/// @note struct _turb1__GetDensityResponse operations:
/// - _turb1__GetDensityResponse* soap_new__turb1__GetDensityResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetDensityResponse(struct soap*, _turb1__GetDensityResponse*) default initialize members
/// - int soap_read__turb1__GetDensityResponse(struct soap*, _turb1__GetDensityResponse*) deserialize from a source
/// - int soap_write__turb1__GetDensityResponse(struct soap*, _turb1__GetDensityResponse*) serialize to a sink
/// - _turb1__GetDensityResponse* soap_dup__turb1__GetDensityResponse(struct soap*, _turb1__GetDensityResponse* dst, _turb1__GetDensityResponse *src) returns deep copy of _turb1__GetDensityResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetDensityResponse(_turb1__GetDensityResponse*) deep deletes _turb1__GetDensityResponse data members, use only on dst after soap_dup__turb1__GetDensityResponse(NULL, _turb1__GetDensityResponse *dst, _turb1__GetDensityResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetDensityResponse
{
/// Element "GetDensityResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfPressure.
struct turb1__ArrayOfPressure* GetDensityResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetTemperature
/// @brief "http://turbulence.pha.jhu.edu/":GetTemperature is a complexType.
///
/// @note struct _turb1__GetTemperature operations:
/// - _turb1__GetTemperature* soap_new__turb1__GetTemperature(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetTemperature(struct soap*, _turb1__GetTemperature*) default initialize members
/// - int soap_read__turb1__GetTemperature(struct soap*, _turb1__GetTemperature*) deserialize from a source
/// - int soap_write__turb1__GetTemperature(struct soap*, _turb1__GetTemperature*) serialize to a sink
/// - _turb1__GetTemperature* soap_dup__turb1__GetTemperature(struct soap*, _turb1__GetTemperature* dst, _turb1__GetTemperature *src) returns deep copy of _turb1__GetTemperature src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetTemperature(_turb1__GetTemperature*) deep deletes _turb1__GetTemperature data members, use only on dst after soap_dup__turb1__GetTemperature(NULL, _turb1__GetTemperature *dst, _turb1__GetTemperature *src) (use soapcpp2 -Ed)
struct _turb1__GetTemperature
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetTemperatureResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetTemperatureResponse is a complexType.
///
/// @note struct _turb1__GetTemperatureResponse operations:
/// - _turb1__GetTemperatureResponse* soap_new__turb1__GetTemperatureResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetTemperatureResponse(struct soap*, _turb1__GetTemperatureResponse*) default initialize members
/// - int soap_read__turb1__GetTemperatureResponse(struct soap*, _turb1__GetTemperatureResponse*) deserialize from a source
/// - int soap_write__turb1__GetTemperatureResponse(struct soap*, _turb1__GetTemperatureResponse*) serialize to a sink
/// - _turb1__GetTemperatureResponse* soap_dup__turb1__GetTemperatureResponse(struct soap*, _turb1__GetTemperatureResponse* dst, _turb1__GetTemperatureResponse *src) returns deep copy of _turb1__GetTemperatureResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetTemperatureResponse(_turb1__GetTemperatureResponse*) deep deletes _turb1__GetTemperatureResponse data members, use only on dst after soap_dup__turb1__GetTemperatureResponse(NULL, _turb1__GetTemperatureResponse *dst, _turb1__GetTemperatureResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetTemperatureResponse
{
/// Element "GetTemperatureResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfPressure.
struct turb1__ArrayOfPressure* GetTemperatureResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVelocityAndPressure
/// @brief "http://turbulence.pha.jhu.edu/":GetVelocityAndPressure is a complexType.
///
/// @note struct _turb1__GetVelocityAndPressure operations:
/// - _turb1__GetVelocityAndPressure* soap_new__turb1__GetVelocityAndPressure(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVelocityAndPressure(struct soap*, _turb1__GetVelocityAndPressure*) default initialize members
/// - int soap_read__turb1__GetVelocityAndPressure(struct soap*, _turb1__GetVelocityAndPressure*) deserialize from a source
/// - int soap_write__turb1__GetVelocityAndPressure(struct soap*, _turb1__GetVelocityAndPressure*) serialize to a sink
/// - _turb1__GetVelocityAndPressure* soap_dup__turb1__GetVelocityAndPressure(struct soap*, _turb1__GetVelocityAndPressure* dst, _turb1__GetVelocityAndPressure *src) returns deep copy of _turb1__GetVelocityAndPressure src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVelocityAndPressure(_turb1__GetVelocityAndPressure*) deep deletes _turb1__GetVelocityAndPressure data members, use only on dst after soap_dup__turb1__GetVelocityAndPressure(NULL, _turb1__GetVelocityAndPressure *dst, _turb1__GetVelocityAndPressure *src) (use soapcpp2 -Ed)
struct _turb1__GetVelocityAndPressure
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVelocityAndPressureResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetVelocityAndPressureResponse is a complexType.
///
/// @note struct _turb1__GetVelocityAndPressureResponse operations:
/// - _turb1__GetVelocityAndPressureResponse* soap_new__turb1__GetVelocityAndPressureResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVelocityAndPressureResponse(struct soap*, _turb1__GetVelocityAndPressureResponse*) default initialize members
/// - int soap_read__turb1__GetVelocityAndPressureResponse(struct soap*, _turb1__GetVelocityAndPressureResponse*) deserialize from a source
/// - int soap_write__turb1__GetVelocityAndPressureResponse(struct soap*, _turb1__GetVelocityAndPressureResponse*) serialize to a sink
/// - _turb1__GetVelocityAndPressureResponse* soap_dup__turb1__GetVelocityAndPressureResponse(struct soap*, _turb1__GetVelocityAndPressureResponse* dst, _turb1__GetVelocityAndPressureResponse *src) returns deep copy of _turb1__GetVelocityAndPressureResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVelocityAndPressureResponse(_turb1__GetVelocityAndPressureResponse*) deep deletes _turb1__GetVelocityAndPressureResponse data members, use only on dst after soap_dup__turb1__GetVelocityAndPressureResponse(NULL, _turb1__GetVelocityAndPressureResponse *dst, _turb1__GetVelocityAndPressureResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetVelocityAndPressureResponse
{
/// Element "GetVelocityAndPressureResult" of type "http://turbulence.pha.jhu.edu/":ArrayOfVector3P.
struct turb1__ArrayOfVector3P* GetVelocityAndPressureResult 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVelocityAndTemperature
/// @brief "http://turbulence.pha.jhu.edu/":GetVelocityAndTemperature is a complexType.
///
/// @note struct _turb1__GetVelocityAndTemperature operations:
/// - _turb1__GetVelocityAndTemperature* soap_new__turb1__GetVelocityAndTemperature(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVelocityAndTemperature(struct soap*, _turb1__GetVelocityAndTemperature*) default initialize members
/// - int soap_read__turb1__GetVelocityAndTemperature(struct soap*, _turb1__GetVelocityAndTemperature*) deserialize from a source
/// - int soap_write__turb1__GetVelocityAndTemperature(struct soap*, _turb1__GetVelocityAndTemperature*) serialize to a sink
/// - _turb1__GetVelocityAndTemperature* soap_dup__turb1__GetVelocityAndTemperature(struct soap*, _turb1__GetVelocityAndTemperature* dst, _turb1__GetVelocityAndTemperature *src) returns deep copy of _turb1__GetVelocityAndTemperature src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVelocityAndTemperature(_turb1__GetVelocityAndTemperature*) deep deletes _turb1__GetVelocityAndTemperature data members, use only on dst after soap_dup__turb1__GetVelocityAndTemperature(NULL, _turb1__GetVelocityAndTemperature *dst, _turb1__GetVelocityAndTemperature *src) (use soapcpp2 -Ed)
struct _turb1__GetVelocityAndTemperature
{
/// Element "authToken" of type xs:string.
char* authToken 0; ///< Optional element.
/// Element "dataset" of type xs:string.
char* dataset 0; ///< Optional element.
/// Element "time" of type xs:float.
float time 1; ///< Required element.
/// Element "spatialInterpolation" of type "http://turbulence.pha.jhu.edu/":SpatialInterpolation.
enum turb1__SpatialInterpolation spatialInterpolation 1; ///< Required element.
/// Element "temporalInterpolation" of type "http://turbulence.pha.jhu.edu/":TemporalInterpolation.
enum turb1__TemporalInterpolation temporalInterpolation 1; ///< Required element.
/// Element "points" of type "http://turbulence.pha.jhu.edu/":ArrayOfPoint3.
struct turb1__ArrayOfPoint3* points 0; ///< Optional element.
/// Element "addr" of type xs:string.
char* addr 0; ///< Optional element.
};
/// @brief Top-level root element "http://turbulence.pha.jhu.edu/":GetVelocityAndTemperatureResponse
/// @brief "http://turbulence.pha.jhu.edu/":GetVelocityAndTemperatureResponse is a complexType.
///
/// @note struct _turb1__GetVelocityAndTemperatureResponse operations:
/// - _turb1__GetVelocityAndTemperatureResponse* soap_new__turb1__GetVelocityAndTemperatureResponse(struct soap*, int num) allocate and default initialize one or more values (an array)
/// - soap_default__turb1__GetVelocityAndTemperatureResponse(struct soap*, _turb1__GetVelocityAndTemperatureResponse*) default initialize members
/// - int soap_read__turb1__GetVelocityAndTemperatureResponse(struct soap*, _turb1__GetVelocityAndTemperatureResponse*) deserialize from a source
/// - int soap_write__turb1__GetVelocityAndTemperatureResponse(struct soap*, _turb1__GetVelocityAndTemperatureResponse*) serialize to a sink
/// - _turb1__GetVelocityAndTemperatureResponse* soap_dup__turb1__GetVelocityAndTemperatureResponse(struct soap*, _turb1__GetVelocityAndTemperatureResponse* dst, _turb1__GetVelocityAndTemperatureResponse *src) returns deep copy of _turb1__GetVelocityAndTemperatureResponse src into dst, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
/// - soap_del__turb1__GetVelocityAndTemperatureResponse(_turb1__GetVelocityAndTemperatureResponse*) deep deletes _turb1__GetVelocityAndTemperatureResponse data members, use only on dst after soap_dup__turb1__GetVelocityAndTemperatureResponse(NULL, _turb1__GetVelocityAndTemperatureResponse *dst, _turb1__GetVelocityAndTemperatureResponse *src) (use soapcpp2 -Ed)
struct _turb1__GetVelocityAndTemperatureResponse
{