zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
/////////////////////////////////////////////////////////////////////////////// 
// Copyright (C) 2002-2016, Open Design Alliance (the "Alliance"). 
// All rights reserved. 
// 
// This software and its documentation and related materials are owned by 
// the Alliance. The software may only be incorporated into application 
// programs owned by members of the Alliance, subject to a signed 
// Membership Agreement and Supplemental Software License Agreement with the
// Alliance. The structure and organization of this software are the valuable  
// trade secrets of the Alliance and its suppliers. The software is also 
// protected by copyright law and international treaty provisions. Application  
// programs incorporating this software must include the following statement 
// with their copyright notices:
//   
//   This application incorporates Teigha(R) software pursuant to a license 
//   agreement with Open Design Alliance.
//   Teigha(R) Copyright (C) 2002-2016 by Open Design Alliance. 
//   All rights reserved.
//
// By use of this software, its documentation or related materials, you 
// acknowledge and accept the above terms.
///////////////////////////////////////////////////////////////////////////////
 
 
 
 
#if !defined(_ODRESBUF_H___INCLUDED_)
#define _ODRESBUF_H___INCLUDED_
 
#include "TD_PackPush.h"
 
#include "RxObject.h"
#include "OdString.h"
#include "DbHandle.h"
#include "OdError.h"
 
class OdBinaryData;
class OdGePoint2d;
class OdGePoint3d;
class OdGeVector2d;
class OdGeVector3d;
class OdDbObjectId;
class OdDbDatabase;
class OdCmColor;
class OdResBuf;
class OdDbSelectionSet;
 
/** \details
  This template class is a specialization of the OdSmartPtr class for OdDbSelectionSet object pointers.
*/
typedef OdSmartPtr<OdDbSelectionSet> OdDbSelectionSetPtr;
 
 
/** \details
  <group Error_Classes>
 
  This class implements the error object which indicates the result of an operation with the 
  ResBuf object when it modifies the tagged data. An instance stores the eInvalidResBuf code.
 
  \sa
  TD_Db
 
  \sa
  <link db_rb.html, Working with Tagged Data>
 
  OdResBuf class
*/
class TOOLKIT_EXPORT OdError_InvalidResBuf : public OdError
{
public:
  OdError_InvalidResBuf() : OdError(eInvalidResBuf){}
};
 
/** \details
The typified smart pointer for the ResBuf object (tagged data). This template 
class is specialization of the OdSmartPtr class for the OdResBuf class.
 
\sa
<link smart_pointers.html, Working with Smart Pointers>
*/
typedef OdSmartPtr<OdResBuf> OdResBufPtr;
 
/** \details
  <group Other_Classes>
 
  This class implements ResBuf object which represents the structure for storing and passing 
  the tagged data of all basic data types between various objects using different technologies.
 
  \remarks
  Each ResBuf object contains three data members:
  * ResType: An integer which specifies the type of data stored in the ResBuf instance.
  * ResVal:  A container for the data stored in the ResBuf instance.
  * RbNext:  A smart pointer to the ResBuf instance to be attached in a linked list.
 
  \sa
  TD_Db
 
  \sa
  <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
  <link db_rb_sample_sequence.html, Example of Working with the Sequence of Tagged Data>
 
  \sa
  <link db_rb.html, Working with Tagged Data>
 
  <link db_xdata.html, Working with Extended Data>
 
  <link db_sysvar.html, Working with System Variables>
*/
class TOOLKIT_EXPORT OdResBuf : public OdRxObject
{
public:
 
  ODRX_DECLARE_MEMBERS(OdResBuf);
 
  /** \details
    Destroys an instance of the ResBuf object.
  */
  ~OdResBuf();
 
  /** \details
    Copies the contents of the specified ResBuf object into this ResBuf object.
 
    \param pRb [in]  Pointer to the specified source ResBuf object to be copied.
 
    \remarks
    This method generates the eInvalidGroupCode exeption when the data types of both 
    ResBuf object are diffenrent or specified ResBuf value is invalid.
 
    \sa
    <link db_rb.html, Working with Tagged Data>
  */
  void copyFrom( const OdRxObject* pRb );
 
 
  /** \details
    Compares the specified ResBuf object with this ResBuf object whether object are equal. 
 
    \param Rb [in]  Reference to the specified ResBuf object to be compared.
 
    \remarks
    Rreturns True when group codes and data values are equal, or False when group codes 
    are different or data values are different.
 
    \sa
    <link db_rb.html, Working with Tagged Data>
  */
  bool operator==( const OdResBuf& Rb ) const;
 
 
  /** \details
    Compares the specified ResBuf object with this ResBuf object whether object are not equal. 
 
    \param Rb [in]  Reference to the specified ResBuf object to be compared.
 
    \remarks
    Returns True when group codes are different or data values are different, or False when 
    group codes and data values are equal.
 
    \sa
    <link db_rb.html, Working with Tagged Data>
  */
  bool operator!=( const OdResBuf& Rb ) const;
 
 
  /** \details
    Defines the group codes for ResBuf instances.
  */
  enum ValueType
  {
    kRtNone                     = 5000,
    kRtDouble                   = 5001,
    kRtPoint2d                  = 5002,
    kRtInt16                    = 5003,
    kRtAngle                    = 5004,
    kRtString                   = 5005,
 
    kRtEntName                  = 5006, // setObjectId()/getEntName()/getObjectId(0)
    kRtPickSet                  = 5007,
 
    kRtOrient                   = 5008,
 
    kRtPoint3d                  = 5009,
    kRtInt32                    = 5010,
    kRtColor                    = 5011,
 
    kRtVoid                     = 5014,
    kRtListBeg                  = 5016, // list begin
    kRtListEnd                  = 5017, // list end
    kRtDote                     = 5018, // dot
    kRtNil                      = 5019, // nil
 
 
 
    kRtDXF0                     = 5020,
    kRtT                        = 5021,
    kRtResBuf                   = 5023,
//  kRtModeless                 = 5027,
 
    kRtBool                     =  290,
    kRtInt8                     =  280,
    kRtVector2d                 = kRtPoint2d,
    kRtVector3d                 = kRtPoint3d,
    kRtBinaryChunk              =  310,
    kRtHandle                   =  320,
    kRtObjectId                 =  330,
    kRtSoftPointerId            =  330,
    kRtHardPointerId            =  340,
    kRtSoftOwnershipId          =  350,
    kRtHardOwnershipId          =  360,
 
    kDxfInvalid                 = -9999,
 
    kDxfXDictionary             = -6,
    kDxfPReactors               = -5,
    kDxfOperator                = -4,
    kDxfXDataStart              = -3,
    kDxfHeaderId                = -2,
    kDxfFirstEntId              = -2,
    kDxfEnd                     = -1,
    kDxfStart                   = 0,
    kDxfText                    = 1,
    kDxfXRefPath                = 1,
    kDxfShapeName               = 2,
    kDxfBlockName               = 2,
    kDxfAttributeTag            = 2,
    kDxfSymbolTableName         = 2,
    kDxfMstyleName              = 2,
    kDxfSymTableRecName         = 2,
    kDxfAttributePrompt         = 3,
    kDxfDimStyleName            = 3,
    kDxfLinetypeProse           = 3,
    kDxfTextFontFile            = 3,
    kDxfDescription             = 3,
    kDxfDimPostStr              = 3,
    kDxfTextBigFontFile         = 4,
    kDxfDimAPostStr             = 4,
    kDxfCLShapeName             = 4,
    kDxfSymTableRecComments     = 4,
    kDxfHandle                  = 5,
    kDxfDimBlk                  = 5,
    kDxfDimBlk1                 = 6,
    kDxfLinetypeName            = 6,
    kDxfDimBlk2                 = 7,
    kDxfTextStyleName           = 7,
    kDxfLayerName               = 8,
    kDxfCLShapeText             = 9,
    kDxfXCoord                 = 10,
    kDxfYCoord                 = 20,
    kDxfZCoord                 = 30,
    kDxfElevation              = 38,
    kDxfThickness              = 39,
    kDxfReal                   = 40,
    kDxfViewportHeight         = 40,
    kDxfTxtSize                = 40,
    kDxfTxtStyleXScale         = 41,
    kDxfViewWidth              = 41,
    kDxfViewportAspect         = 41,
    kDxfTxtStylePSize          = 42,
    kDxfViewLensLength         = 42,
    kDxfViewFrontClip          = 43,
    kDxfViewBackClip           = 44,
    kDxfShapeXOffset           = 44,
    kDxfShapeYOffset           = 45,
    kDxfViewHeight             = 45,
    kDxfShapeScale             = 46,
    kDxfPixelScale             = 47,
    kDxfLinetypeScale          = 48,
    kDxfDashLength             = 49,
    kDxfMlineOffset            = 49,
    kDxfLinetypeElement        = 49,
    kDxfAngle                  = 50,
    kDxfViewportSnapAngle      = 50,
    kDxfViewportTwist          = 51,
    kDxfVisibility             = 60,
    kDxfLayerLinetype          = 61,
    kDxfColor                  = 62,
    kDxfHasSubentities         = 66,
    kDxfViewportVisibility     = 67,
    kDxfViewportActive         = 68,
    kDxfViewportNumber         = 69,
    kDxfInt16                  = 70,
    kDxfViewMode               = 71,
    kDxfCircleSides            = 72,
    kDxfViewportZoom           = 73,
    kDxfViewportIcon           = 74,
    kDxfViewportSnap           = 75,
    kDxfViewportGrid           = 76,
    kDxfViewportSnapStyle      = 77,
    kDxfViewportSnapPair       = 78,
    kDxfRegAppFlags            = 71,
    kDxfTxtStyleFlags          = 71,
    kDxfLinetypeAlign          = 72,
    kDxfLinetypePDC            = 73,
    kDxfInt32                  = 90,
    kDxfSubclass               = 100,
    kDxfEmbeddedObjectStart    = 101,
    kDxfControlString          = 102,
    kDxfDimVarHandle           = 105,
    kDxfUCSOrg                 = 110,
    kDxfUCSOriX                = 111,
    kDxfUCSOriY                = 112,
    kDxfXReal                  = 140,
    // 64-bit integers can only be used with version R24 and higher
    kDxfInt64                  = 160,
 
    kDxfXInt16                 = 170,
    kDxfNormalX                = 210,
    kDxfNormalY                = 220,
    kDxfNormalZ                = 230,
    kDxfXXInt16                = 270,
    kDxfInt8                   = 280,
    kDxfRenderMode             = 281,
    kDxfBool                   = 290,
    kDxfXTextString            = 300,
    kDxfBinaryChunk            = 310,
    kDxfArbHandle              = 320,
    kDxfSoftPointerId          = 330,
    kDxfHardPointerId          = 340,
    kDxfSoftOwnershipId        = 350,
    kDxfHardOwnershipId        = 360,  
    kDxfLineWeight             = 370,
    kDxfPlotStyleNameType      = 380,
    kDxfPlotStyleNameId        = 390,
    kDxfXXXInt16               = 400,
    kDxfLayoutName             = 410,
    kDxfComment                = 999,
    kDxfXdAsciiString          = 1000,
    kDxfRegAppName             = 1001,
    kDxfXdControlString        = 1002,
    kDxfXdLayerName            = 1003,
    kDxfXdBinaryChunk          = 1004,
    kDxfXdHandle               = 1005,
    kDxfXdXCoord               = 1010,
    kDxfXdYCoord               = 1020,
    kDxfXdZCoord               = 1030,
    kDxfXdWorldXCoord          = 1011,
    kDxfXdWorldYCoord          = 1021,
    kDxfXdWorldZCoord          = 1031,
    kDxfXdWorldXDisp           = 1012,
    kDxfXdWorldYDisp           = 1022,
    kDxfXdWorldZDisp           = 1032,
    kDxfXdWorldXDir            = 1013,
    kDxfXdWorldYDir            = 1023,
    kDxfXdWorldZDir            = 1033,
    kDxfXdReal                 = 1040,
    kDxfXdDist                 = 1041,
    kDxfXdScale                = 1042,
    kDxfXdInteger16            = 1070,
    kDxfXdInteger32            = 1071
  };
 
 
  /** \details
    Returns the group code as an Integer value which indicates the data type stored in
    the ResBuf object.
    
    \remarks
    Use the OdDxfCode::_getType() static method to determine the type of data associated 
    with the returned group code.
    
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_type.html, Getting and Setting Tagged Data>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::ValueType enumerator
 
    OdResBuf::setRestype() method
  */
  int restype() const;
 
  
  /** \details
    Sets the group code for the ResBuf object.
    
    \param resType [in]  Group code as an Integer value.
        
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_type.html, Getting and Setting Tagged Data>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::ValueType enumerator
 
    OdResBuf::restype() method
  */
  void setRestype( int resType );
 
 
  /** \details
    Returns a smart pointer to the next ResBuf object in the sequence of tagged data.
 
    \sa
    <link db_rb_sample_sequence.html, Example of Working with the Sequence of Tagged Data>
 
    \sa
    <link db_rb_sequence.html, Sequence of Tagged Data>
 
    OdResBuf::last(), OdResBuf::setNext() methods
  */
  OdResBufPtr next() const;
 
 
  /** \details
    Returns a smart pointer to the last ResBuf object in the sequence of tagged data.
 
    \sa
    <link db_rb_sample_sequence.html, Example of Working with the Sequence of Tagged Data>
 
    \sa
    <link db_rb_sequence.html, Sequence of Tagged Data>
 
    OdResBuf::next(), OdResBuf::setNext() methods
  */
  OdResBufPtr last() const;
 
 
  /** \details
    Inserts the specified ResBuf object before the next ResBuf object in the sequence of 
    tagged data after the current ResBuf object that calls this method.
    
    \param pRb [in]  Pointer to the existing ResBuf instance to be inserted.
    
    \remarks
    Returns a smart pointer to the ResBuf object before which it was inserted.
 
    \sa
    <link db_rb_sample_sequence.html, Example of Working with the Sequence of Tagged Data>
 
    \sa
    <link db_rb_sequence.html, Sequence of Tagged Data>
 
    OdResBuf::next(), OdResBuf::last(), OdResBuf::setNext() methods
  */
  OdResBufPtr insert( OdResBuf* pRb );
 
 
  /** \details
    Sets the specified ResBuf object as the next ResBuf Object in the sequence of 
    tagged data after the current ResBuf object that calls this method.
    
    \param pRb [in]  Pointer to the existing ResBuf instance to be set.
 
    \remarks
    Returns a smart pointer to the ResBuf object before which it was set.
 
    \sa
    <link db_rb_sample_sequence.html, Example of Working with the Sequence of Tagged Data>
 
    \sa
    <link db_rb_sequence.html, Sequence of Tagged Data>
 
    OdResBuf::next(), OdResBuf::last(), OdResBuf::insert() methods
  */
  OdResBufPtr setNext( OdResBuf* pRb );
 
 
  /** \details
    Returns the data content of the ResBuf object as a String value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the String type or Name type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_string.html, Getting and Setting Strings>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setString(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  OdString getString() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified String value only if
    the stored group code has a String type.
      
    \param sValue [in]  String value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the String type or Name type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_string.html, Getting and Setting Strings>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getString(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setString( const OdString& sValue );
 
 
  /** \details
    Returns the data content of the ResBuf object as a Boolean value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Bool type. If the stored value is an Integer type, this method 
    casts it to a Boolean type and returns True when the value is non zero, or False when the
    value is zero. 
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setBool(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  bool getBool() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified Boolean value only if
    the stored group code has a Boolean type.
      
    \param bValue [in]  Boolean value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Bool type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getBool(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setBool( bool bValue );
 
 
  /** \details
    Returns the data content of the ResBuf object as 8-bit Integer value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer8 or Integer16 type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setInt8(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  OdInt8 getInt8() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified 8-bit Integer value only if
    the stored group code has an Integer type.
      
    \param iValue [in]  8-bit Integer value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer8 type. Use the ((OdInt8)value) instruction to convert  
    the passed value.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getInt8(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setInt8( OdInt8 iValue );
 
 
  /** \details
    Returns the data content of the ResBuf object as 16-bit Integer value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer8 or Integer16 type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setInt16(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  OdInt16 getInt16() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified 16-bit Integer value only if
    the stored group code has an Integer type.
      
    \param iValue [in]  16-bit Integer value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer16 type. Use the ((OdInt16)value) instruction to convert  
    the passed value.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getInt16(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setInt16( OdInt16 iValue );
 
 
 
  /** \details
    Returns the data content of the ResBuf object as 32-bit Integer value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer8, Integer16, or Integer32 type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setInt32(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  OdInt32 getInt32() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified 32-bit Integer value only if
    the stored group code has an Integer type.
      
    \param iValue [in]  32-bit Integer value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer32 type. Use the ((OdInt32)value) instruction to convert  
    the passed value.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getInt32(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setInt32( OdInt32 iValue );
 
 
  /** \details
    Returns the data content of the ResBuf object as 64-bit Integer value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer8, Integer16, Integer32, or Integer64 type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setInt64(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  OdInt64 getInt64() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified 64-bit Integer value only if
    the stored group code has an Integer type.
      
    \param iValue [in]  64-bit Integer value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Integer64 type. Use the ((OdInt64)value) instruction to convert  
    the passed value.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getInt64(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setInt64( OdInt64 iValue );
 
 
  /** \details
    Returns the data content of the ResBuf object as a double-precision floating-point value.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Double or Angle type. The returned value can be 
    converted to an Integer value truncating the fractional part.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setDouble(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  double getDouble() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified double-precision 
    floating-point value only if the stored group code has a Double or Angle type.
      
    \param realValue [in]  Double value to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Double or Angle type. Use the ((double)value) 
    instruction to convert the passed value.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_typical.html, Getting and Setting Typical Data (integer, double, boolean)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getDouble(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setDouble( double realValue );
 
 
  /** \details
    Returns the data content of the ResBuf object as two-dimesional point instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. When the ResBuf object stores three-dimensional
    point or vector, this method converts it to the two-dimesional point truncating Z-coordinate.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setPoint2d(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  const OdGePoint2d& getPoint2d() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified two-dimesional point instance 
    only if the stored group code has a Point type.
      
    \param gePoint [in]  Two-dimesional point instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. The passed value must be the OdGePoint2d instance.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getPoint2d(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setPoint2d( const OdGePoint2d& gePoint );
 
 
  /** \details
    Returns the data content of the ResBuf object as three-dimesional point instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. When the ResBuf object stores two-dimensional
    point or vector, this method converts it to the three-dimesional point adding zero Z-coordinate.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setPoint3d(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  const OdGePoint3d& getPoint3d() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified three-dimesional point  
    instance only if the stored group code has a Point type.
      
    \param gePoint [in]  Three-dimesional point instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. The passed value must be the OdGePoint3d instance.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getPoint3d(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setPoint3d( const OdGePoint3d& gePoint );
 
 
  /** \details
    Returns the data content of the ResBuf object as two-dimesional vector instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. When the ResBuf object stores three-dimensional
    point or vector, this method converts it to the two-dimesional vector truncating Z-coordinate.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setVector2d(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  const OdGeVector2d& getVector2d() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified two-dimesional vector  
    instance only if the stored group code has a Point type.
      
    \param geVector [in]  Two-dimesional vector instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. The passed value must be the OdGeVector2d instance.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getVector2d(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setVector2d( const OdGeVector2d& geVector );
 
 
  /** \details
    Returns the data content of the ResBuf object as three-dimesional vector instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. When the ResBuf object stores two-dimensional
    point or vector, this method converts it to the three-dimesional vector adding zero Z-coordinate.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setVector3d(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  const OdGeVector3d& getVector3d() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified three-dimesional vector  
    instance only if the stored group code has a Point type.
      
    \param geVector [in]  Three-dimesional vector instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Point type. The passed value must be the OdGeVector3d instance.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_point.html, Getting and Setting Points and Vectors>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getVector3d(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
  */
  void setVector3d(const OdGeVector3d& val);
 
 
  /** \details
    Returns the data content of the ResBuf object as a Binary chunk.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the BinaryChunk type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_other.html, Getting and Setting Specific Data (color, binary, resbuf)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setBinaryChunk(), OdResBuf::restype(), OdDxfCode::_getType() methods
 
    OdBinaryData, OdUInt8 classes
  */
  const OdBinaryData& getBinaryChunk() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified binary chunk instance 
    only if the stored group code has the BinaryChunk type.
      
    \param bChunk [in]  Binary chunk instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the BinaryChunk type. The passed value must be the OdBinaryChunk instance.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_other.html, Getting and Setting Specific Data (color, binary, resbuf)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getBinaryChunk(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
 
    OdBinaryData, OdUInt8 classes
  */
  void setBinaryChunk( const OdBinaryData& bChunk );
 
 
  /** \details
    Returns the data content of the ResBuf object as a Color instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored group code is not set 
    to kRtColor. The OdDxfCode::_getType() method returns Unknown type for it.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_other.html, Getting and Setting Specific Data (color, binary, resbuf)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    <link cm.html, Colors and Transparencies>
 
    OdResBuf::setColor(), OdResBuf::restype() methods
  */
  const OdCmColor& getColor() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified Color instance 
    only if the group code is set to OdResBuf::kRtColor.
      
    \param cmColor [in]  Color instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored group code is not set 
    to kRtColor. The passed value must be the OdCmColor instance. The OdDxfCode::_getType() 
    method returns Unknown type for it.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_other.html, Getting and Setting Specific Data (color, binary, resbuf)>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    <link cm.html, Colors and Transparencies>
 
    OdResBuf::getColor(), OdResBuf::setRestype() methods
  */
  void setColor( const OdCmColor& cmColor );
 
 
  /** \details
    Returns a pointer to the ResBuf instance nested in the data content of the ResBuf object.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored group code is not set 
    to kRtResBuf. The OdDxfCode::_getType() method returns Unknown type for it.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_other.html, Getting and Setting Specific Data (color, binary, resbuf)>
 
    OdResBuf::setResBuf(), OdResBuf::restype() methods
  */
  OdResBufPtr getResBuf() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified ResBuf instance 
    only if the group code is set to OdResBuf::kRtResBuf.
      
    \param pResBuf [in]  Pointer to the existing ResBuf instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored group code is not set 
    to kRtResBuf. The OdDxfCode::_getType() method returns Unknown type for it.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_other.html, Getting and Setting Specific Data (color, binary, resbuf)>
 
    OdResBuf::getResBuf(), OdResBuf::setRestype() methods
  */
  void setResBuf( const OdResBuf* pResBuf );
 
 
  /** \details
    Returns the data content of the ResBuf object as an OdDbHandle instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Handle type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_object.html, Getting and Setting Objects>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setHandle(), OdResBuf::restype(), OdDxfCode::_getType() methods
 
    OdDbHandle, OdUInt64 classes
  */
  OdDbHandle getHandle() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified Handle instance 
    only if the stored group code has the Handle type.
      
    \param vHandle [in]  Handle instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the Handle type. The passed value must be an instance of the OdDbHandle 
    class or OdUInt64 class to be converted to Handle type.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_object.html, Getting and Setting Objects>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getHandle(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
 
    OdDbHandle, OdUInt64 classes
  */
  void setHandle( const OdDbHandle& vHandle );
 
 
  /** \details
    Returns the data content of the ResBuf object as an OdDbObjectId instance.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the ObjectId type. Only group codes kRtEntName and 
    kDxfEnd store the object ID, other group codes associated with ObjectId,
    SoftPointerId, HardPointerId, SoftOwnershipId, HardOwnershipId types store the handle.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_object.html, Getting and Setting Objects>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::setObjectId(), OdResBuf::restype(), OdDxfCode::_getType() methods
 
    OdDbObjectId, OdDbHandle classes
  */
  const OdDbObjectId& getEntName() const;
 
 
  /** \details
    Sets the data content of the ResBuf object using the specified object ID instance 
    only if the stored group code has the ObjectId, SoftPointerId, 
    HardPointerId, SoftOwnershipId, or HardOwnershipId type.
      
    \param idObject [in]  Object ID instance to be set.
 
    \remarks
    This method generates the OdError_InvalidResBuf exeption when the stored data type does not 
    correspond to the ObjectId type. The passed value must be the OdDbObjectId instance.
    Only group codes kRtEntName and kDxfEnd store the object ID, other group 
    codes store the handle.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_object.html, Getting and Setting Objects>
 
    <link db_rb_verify.html, Determining the Data Type by Group Code>
 
    OdResBuf::getEntName(), OdResBuf::setRestype(), OdDxfCode::_getType() methods
 
    OdDbObjectId, OdDbHandle classes
  */
  void setObjectId( const OdDbObjectId& idObject );
 
 
  /** \details
    Returns the data content of the ResBuf object as an OdDbObjectId instance using the 
    specified database instance.
    
    \param pDb [in]  Pointer to the database object.
 
    \sa
    <link db_rb_sample_codes.html, Example of Entering and Displaying Tagged Data>
 
    \sa
    <link db_rb_data_object.html, Getting and Setting Objects>
 
    OdResBuf::setObjectId(), OdResBuf::restype(), OdDxfCode::_getType() methods
  */
  OdDbObjectId getObjectId( const OdDbDatabase* pDb ) const;
 
 
  /** \details
    Returns the ResVal in this ResBuf object.
  */
  OdDbSelectionSetPtr getPickSet() const;
 
  /** \details
    Sets the ResVal in this ResBuf object.
      
    \param pSSet [in]  selection set.
 
    \remarks
    OdError_InvalidResBuf if ResType does not correspond to the type of ResVal.
  */
  void setPickSet(const OdDbSelectionSet* pSSet);
 
 
  /** \details
    Create an instance of the ResBuf object of the specified data type and initialized
    the specified data value.
    
    \param resType [in]  Group code as an Integer value.
    \param resVal  [in] Value of the corresponding type.    
 
    \remarks
    These method generate the OdError_InvalidResBuf exeption when the specified data value 
    does not correspond to the specified data type.
 
    \sa
    <link db_rb_sequence.html, Sequence of Tagged Data>
 
    \sa
    <link db_rb_data_object.html, Getting and Setting Objects>
  */
  static OdResBufPtr newRb(int resType = OdResBuf::kRtNone);
 
  static OdResBufPtr newRb(int resType, bool resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setBool(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdInt8 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt8(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdUInt8 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt8(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdInt16 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt16(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdUInt16 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt16(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdInt32 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt32(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdUInt32 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt32(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdInt64 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt64(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, OdUInt64 resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setInt64(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, double resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setDouble(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdGePoint2d& resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setPoint2d(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdGePoint3d& resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setPoint3d(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdGeVector2d& resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setVector2d(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdGeVector3d& resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setVector3d(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdString& resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setString(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdChar* resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setString(resVal);
    return pRes;
  }
 
#if defined(OD_WINDOWS_DESKTOP) && defined(_MSC_VER)
  static OdResBufPtr newRb(int resType, const __wchar_t* resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setString(resVal);
    return pRes;
  }
#endif
 
  static OdResBufPtr newRb(int resType, const OdCmColor& resVal)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setColor(resVal);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdDbObjectId& id)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setObjectId(id);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdDbSelectionSet* pSSet)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setPickSet(pSSet);
    return pRes;
  }
 
  static OdResBufPtr newRb(int resType, const OdResBuf* pNestedRb)
  {
    OdResBufPtr pRes = newRb(resType);
    pRes->setResBuf(pNestedRb);
    return pRes;
  }
 
  /*!DOM*/ // is used to get assertion with needed call stack only
  static void setAssertIndexByNewRb(int index);
 
  /** \details
    Defines the content of the ResBuf object.
  */
  union Data
  {
    bool    Bool;                     // Boolean content
    OdInt16 Int16;                    // 8-bit or 16-bit Integer content
    OdInt32 Int32;                    // 32-bit Integer or Color content
    OdInt64 Int64;                    // 64-bit Integer or Handle content  
    double  Double;                   // double-precision floating-point content
    void*   Pointer;                  // pointer to an object
    OdUInt8 Bytes[sizeof(OdInt64)];   // Content as an array of bytes
  };
 
protected:
  /** \details
    Builds an instance of the ResBuf object.
    
    \remarks
    Use the newRb() static pseudo-constructor instead it.
    See: <link db_rb_sequence.html, Sequence of Tagged Data>
  */
  OdResBuf();
 
  int m_nCode;           // Group code that defines the data type
  Data m_data;           // Value that defines the content
  OdResBufPtr m_pNext;   // Smart pointer to another instance for attaching in a sequence
};
 
inline bool
OdResBuf::operator!=( const OdResBuf& other ) const
{
  return !operator==( other );
}
 
#include "TD_PackPop.h"
 
#endif //_ODRESBUF_H___INCLUDED_