pixhawk.pb.h 43.7 KB
Newer Older
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 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: pixhawk.proto

#ifndef PROTOBUF_pixhawk_2eproto__INCLUDED
#define PROTOBUF_pixhawk_2eproto__INCLUDED

#include <string>

#include <google/protobuf/stubs/common.h>

#if GOOGLE_PROTOBUF_VERSION < 2004000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers.  Please update
#error your headers.
#endif
#if 2004001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers.  Please
#error regenerate this file with a newer version of protoc.
#endif

#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/repeated_field.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/generated_message_reflection.h>
// @@protoc_insertion_point(includes)

namespace px {

// Internal implementation detail -- do not call these.
void  protobuf_AddDesc_pixhawk_2eproto();
void protobuf_AssignDesc_pixhawk_2eproto();
void protobuf_ShutdownFile_pixhawk_2eproto();

class PointCloudXYZI;
class PointCloudXYZI_PointXYZI;
class PointCloudXYZRGB;
class PointCloudXYZRGB_PointXYZRGB;
class RGBDImage;

// ===================================================================

class PointCloudXYZI_PointXYZI : public ::google::protobuf::Message {
 public:
  PointCloudXYZI_PointXYZI();
  virtual ~PointCloudXYZI_PointXYZI();
  
  PointCloudXYZI_PointXYZI(const PointCloudXYZI_PointXYZI& from);
  
  inline PointCloudXYZI_PointXYZI& operator=(const PointCloudXYZI_PointXYZI& from) {
    CopyFrom(from);
    return *this;
  }
  
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _unknown_fields_;
  }
  
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return &_unknown_fields_;
  }
  
  static const ::google::protobuf::Descriptor* descriptor();
  static const PointCloudXYZI_PointXYZI& default_instance();
  
  void Swap(PointCloudXYZI_PointXYZI* other);
  
  // implements Message ----------------------------------------------
  
  PointCloudXYZI_PointXYZI* New() const;
  void CopyFrom(const ::google::protobuf::Message& from);
  void MergeFrom(const ::google::protobuf::Message& from);
  void CopyFrom(const PointCloudXYZI_PointXYZI& from);
  void MergeFrom(const PointCloudXYZI_PointXYZI& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::google::protobuf::Metadata GetMetadata() const;
  
  // nested types ----------------------------------------------------
  
  // accessors -------------------------------------------------------
  
  // required float x = 1;
  inline bool has_x() const;
  inline void clear_x();
  static const int kXFieldNumber = 1;
  inline float x() const;
  inline void set_x(float value);
  
  // required float y = 2;
  inline bool has_y() const;
  inline void clear_y();
  static const int kYFieldNumber = 2;
  inline float y() const;
  inline void set_y(float value);
  
  // required float z = 3;
  inline bool has_z() const;
  inline void clear_z();
  static const int kZFieldNumber = 3;
  inline float z() const;
  inline void set_z(float value);
  
  // required float intensity = 4;
  inline bool has_intensity() const;
  inline void clear_intensity();
  static const int kIntensityFieldNumber = 4;
  inline float intensity() const;
  inline void set_intensity(float value);
  
  // @@protoc_insertion_point(class_scope:px.PointCloudXYZI.PointXYZI)
 private:
  inline void set_has_x();
  inline void clear_has_x();
  inline void set_has_y();
  inline void clear_has_y();
  inline void set_has_z();
  inline void clear_has_z();
  inline void set_has_intensity();
  inline void clear_has_intensity();
  
  ::google::protobuf::UnknownFieldSet _unknown_fields_;
  
  float x_;
  float y_;
  float z_;
  float intensity_;
  
  mutable int _cached_size_;
  ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
  
  friend void  protobuf_AddDesc_pixhawk_2eproto();
  friend void protobuf_AssignDesc_pixhawk_2eproto();
  friend void protobuf_ShutdownFile_pixhawk_2eproto();
  
  void InitAsDefaultInstance();
  static PointCloudXYZI_PointXYZI* default_instance_;
};
// -------------------------------------------------------------------

class PointCloudXYZI : public ::google::protobuf::Message {
 public:
  PointCloudXYZI();
  virtual ~PointCloudXYZI();
  
  PointCloudXYZI(const PointCloudXYZI& from);
  
  inline PointCloudXYZI& operator=(const PointCloudXYZI& from) {
    CopyFrom(from);
    return *this;
  }
  
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _unknown_fields_;
  }
  
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return &_unknown_fields_;
  }
  
  static const ::google::protobuf::Descriptor* descriptor();
  static const PointCloudXYZI& default_instance();
  
  void Swap(PointCloudXYZI* other);
  
  // implements Message ----------------------------------------------
  
  PointCloudXYZI* New() const;
  void CopyFrom(const ::google::protobuf::Message& from);
  void MergeFrom(const ::google::protobuf::Message& from);
  void CopyFrom(const PointCloudXYZI& from);
  void MergeFrom(const PointCloudXYZI& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::google::protobuf::Metadata GetMetadata() const;
  
  // nested types ----------------------------------------------------
  
  typedef PointCloudXYZI_PointXYZI PointXYZI;
  
  // accessors -------------------------------------------------------
  
  // repeated .px.PointCloudXYZI.PointXYZI points = 1;
  inline int points_size() const;
  inline void clear_points();
  static const int kPointsFieldNumber = 1;
  inline const ::px::PointCloudXYZI_PointXYZI& points(int index) const;
  inline ::px::PointCloudXYZI_PointXYZI* mutable_points(int index);
  inline ::px::PointCloudXYZI_PointXYZI* add_points();
  inline const ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZI_PointXYZI >&
      points() const;
  inline ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZI_PointXYZI >*
      mutable_points();
  
  // @@protoc_insertion_point(class_scope:px.PointCloudXYZI)
 private:
  
  ::google::protobuf::UnknownFieldSet _unknown_fields_;
  
  ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZI_PointXYZI > points_;
  
  mutable int _cached_size_;
  ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
  
  friend void  protobuf_AddDesc_pixhawk_2eproto();
  friend void protobuf_AssignDesc_pixhawk_2eproto();
  friend void protobuf_ShutdownFile_pixhawk_2eproto();
  
  void InitAsDefaultInstance();
  static PointCloudXYZI* default_instance_;
};
// -------------------------------------------------------------------

class PointCloudXYZRGB_PointXYZRGB : public ::google::protobuf::Message {
 public:
  PointCloudXYZRGB_PointXYZRGB();
  virtual ~PointCloudXYZRGB_PointXYZRGB();
  
  PointCloudXYZRGB_PointXYZRGB(const PointCloudXYZRGB_PointXYZRGB& from);
  
  inline PointCloudXYZRGB_PointXYZRGB& operator=(const PointCloudXYZRGB_PointXYZRGB& from) {
    CopyFrom(from);
    return *this;
  }
  
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _unknown_fields_;
  }
  
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return &_unknown_fields_;
  }
  
  static const ::google::protobuf::Descriptor* descriptor();
  static const PointCloudXYZRGB_PointXYZRGB& default_instance();
  
  void Swap(PointCloudXYZRGB_PointXYZRGB* other);
  
  // implements Message ----------------------------------------------
  
  PointCloudXYZRGB_PointXYZRGB* New() const;
  void CopyFrom(const ::google::protobuf::Message& from);
  void MergeFrom(const ::google::protobuf::Message& from);
  void CopyFrom(const PointCloudXYZRGB_PointXYZRGB& from);
  void MergeFrom(const PointCloudXYZRGB_PointXYZRGB& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::google::protobuf::Metadata GetMetadata() const;
  
  // nested types ----------------------------------------------------
  
  // accessors -------------------------------------------------------
  
  // required float x = 1;
  inline bool has_x() const;
  inline void clear_x();
  static const int kXFieldNumber = 1;
  inline float x() const;
  inline void set_x(float value);
  
  // required float y = 2;
  inline bool has_y() const;
  inline void clear_y();
  static const int kYFieldNumber = 2;
  inline float y() const;
  inline void set_y(float value);
  
  // required float z = 3;
  inline bool has_z() const;
  inline void clear_z();
  static const int kZFieldNumber = 3;
  inline float z() const;
  inline void set_z(float value);
  
  // required float rgb = 4;
  inline bool has_rgb() const;
  inline void clear_rgb();
  static const int kRgbFieldNumber = 4;
  inline float rgb() const;
  inline void set_rgb(float value);
  
  // @@protoc_insertion_point(class_scope:px.PointCloudXYZRGB.PointXYZRGB)
 private:
  inline void set_has_x();
  inline void clear_has_x();
  inline void set_has_y();
  inline void clear_has_y();
  inline void set_has_z();
  inline void clear_has_z();
  inline void set_has_rgb();
  inline void clear_has_rgb();
  
  ::google::protobuf::UnknownFieldSet _unknown_fields_;
  
  float x_;
  float y_;
  float z_;
  float rgb_;
  
  mutable int _cached_size_;
  ::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
  
  friend void  protobuf_AddDesc_pixhawk_2eproto();
  friend void protobuf_AssignDesc_pixhawk_2eproto();
  friend void protobuf_ShutdownFile_pixhawk_2eproto();
  
  void InitAsDefaultInstance();
  static PointCloudXYZRGB_PointXYZRGB* default_instance_;
};
// -------------------------------------------------------------------

class PointCloudXYZRGB : public ::google::protobuf::Message {
 public:
  PointCloudXYZRGB();
  virtual ~PointCloudXYZRGB();
  
  PointCloudXYZRGB(const PointCloudXYZRGB& from);
  
  inline PointCloudXYZRGB& operator=(const PointCloudXYZRGB& from) {
    CopyFrom(from);
    return *this;
  }
  
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _unknown_fields_;
  }
  
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return &_unknown_fields_;
  }
  
  static const ::google::protobuf::Descriptor* descriptor();
  static const PointCloudXYZRGB& default_instance();
  
  void Swap(PointCloudXYZRGB* other);
  
  // implements Message ----------------------------------------------
  
  PointCloudXYZRGB* New() const;
  void CopyFrom(const ::google::protobuf::Message& from);
  void MergeFrom(const ::google::protobuf::Message& from);
  void CopyFrom(const PointCloudXYZRGB& from);
  void MergeFrom(const PointCloudXYZRGB& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::google::protobuf::Metadata GetMetadata() const;
  
  // nested types ----------------------------------------------------
  
  typedef PointCloudXYZRGB_PointXYZRGB PointXYZRGB;
  
  // accessors -------------------------------------------------------
  
  // repeated .px.PointCloudXYZRGB.PointXYZRGB points = 1;
  inline int points_size() const;
  inline void clear_points();
  static const int kPointsFieldNumber = 1;
  inline const ::px::PointCloudXYZRGB_PointXYZRGB& points(int index) const;
  inline ::px::PointCloudXYZRGB_PointXYZRGB* mutable_points(int index);
  inline ::px::PointCloudXYZRGB_PointXYZRGB* add_points();
  inline const ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZRGB_PointXYZRGB >&
      points() const;
  inline ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZRGB_PointXYZRGB >*
      mutable_points();
  
  // @@protoc_insertion_point(class_scope:px.PointCloudXYZRGB)
 private:
  
  ::google::protobuf::UnknownFieldSet _unknown_fields_;
  
  ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZRGB_PointXYZRGB > points_;
  
  mutable int _cached_size_;
  ::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
  
  friend void  protobuf_AddDesc_pixhawk_2eproto();
  friend void protobuf_AssignDesc_pixhawk_2eproto();
  friend void protobuf_ShutdownFile_pixhawk_2eproto();
  
  void InitAsDefaultInstance();
  static PointCloudXYZRGB* default_instance_;
};
// -------------------------------------------------------------------

class RGBDImage : public ::google::protobuf::Message {
 public:
  RGBDImage();
  virtual ~RGBDImage();
  
  RGBDImage(const RGBDImage& from);
  
  inline RGBDImage& operator=(const RGBDImage& from) {
    CopyFrom(from);
    return *this;
  }
  
  inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
    return _unknown_fields_;
  }
  
  inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
    return &_unknown_fields_;
  }
  
  static const ::google::protobuf::Descriptor* descriptor();
  static const RGBDImage& default_instance();
  
  void Swap(RGBDImage* other);
  
  // implements Message ----------------------------------------------
  
  RGBDImage* New() const;
  void CopyFrom(const ::google::protobuf::Message& from);
  void MergeFrom(const ::google::protobuf::Message& from);
  void CopyFrom(const RGBDImage& from);
  void MergeFrom(const RGBDImage& from);
  void Clear();
  bool IsInitialized() const;
  
  int ByteSize() const;
  bool MergePartialFromCodedStream(
      ::google::protobuf::io::CodedInputStream* input);
  void SerializeWithCachedSizes(
      ::google::protobuf::io::CodedOutputStream* output) const;
  ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
  int GetCachedSize() const { return _cached_size_; }
  private:
  void SharedCtor();
  void SharedDtor();
  void SetCachedSize(int size) const;
  public:
  
  ::google::protobuf::Metadata GetMetadata() const;
  
  // nested types ----------------------------------------------------
  
  // accessors -------------------------------------------------------
  
  // required uint32 cols = 1;
  inline bool has_cols() const;
  inline void clear_cols();
  static const int kColsFieldNumber = 1;
  inline ::google::protobuf::uint32 cols() const;
  inline void set_cols(::google::protobuf::uint32 value);
  
  // required uint32 rows = 2;
  inline bool has_rows() const;
  inline void clear_rows();
  static const int kRowsFieldNumber = 2;
  inline ::google::protobuf::uint32 rows() const;
  inline void set_rows(::google::protobuf::uint32 value);
  
  // required uint32 step1 = 3;
  inline bool has_step1() const;
  inline void clear_step1();
  static const int kStep1FieldNumber = 3;
  inline ::google::protobuf::uint32 step1() const;
  inline void set_step1(::google::protobuf::uint32 value);
  
  // required uint32 type1 = 4;
  inline bool has_type1() const;
  inline void clear_type1();
  static const int kType1FieldNumber = 4;
  inline ::google::protobuf::uint32 type1() const;
  inline void set_type1(::google::protobuf::uint32 value);
  
  // required bytes imageData1 = 5;
  inline bool has_imagedata1() const;
  inline void clear_imagedata1();
  static const int kImageData1FieldNumber = 5;
  inline const ::std::string& imagedata1() const;
  inline void set_imagedata1(const ::std::string& value);
  inline void set_imagedata1(const char* value);
  inline void set_imagedata1(const void* value, size_t size);
  inline ::std::string* mutable_imagedata1();
  inline ::std::string* release_imagedata1();
  
  // required uint32 step2 = 6;
  inline bool has_step2() const;
  inline void clear_step2();
  static const int kStep2FieldNumber = 6;
  inline ::google::protobuf::uint32 step2() const;
  inline void set_step2(::google::protobuf::uint32 value);
  
  // required uint32 type2 = 7;
  inline bool has_type2() const;
  inline void clear_type2();
  static const int kType2FieldNumber = 7;
  inline ::google::protobuf::uint32 type2() const;
  inline void set_type2(::google::protobuf::uint32 value);
  
  // required bytes imageData2 = 8;
  inline bool has_imagedata2() const;
  inline void clear_imagedata2();
  static const int kImageData2FieldNumber = 8;
  inline const ::std::string& imagedata2() const;
  inline void set_imagedata2(const ::std::string& value);
  inline void set_imagedata2(const char* value);
  inline void set_imagedata2(const void* value, size_t size);
  inline ::std::string* mutable_imagedata2();
  inline ::std::string* release_imagedata2();
  
  // optional uint32 camera_config = 9;
  inline bool has_camera_config() const;
  inline void clear_camera_config();
  static const int kCameraConfigFieldNumber = 9;
  inline ::google::protobuf::uint32 camera_config() const;
  inline void set_camera_config(::google::protobuf::uint32 value);
  
  // optional uint32 camera_type = 10;
  inline bool has_camera_type() const;
  inline void clear_camera_type();
  static const int kCameraTypeFieldNumber = 10;
  inline ::google::protobuf::uint32 camera_type() const;
  inline void set_camera_type(::google::protobuf::uint32 value);
  
  // optional uint64 timestamp = 11;
  inline bool has_timestamp() const;
  inline void clear_timestamp();
  static const int kTimestampFieldNumber = 11;
  inline ::google::protobuf::uint64 timestamp() const;
  inline void set_timestamp(::google::protobuf::uint64 value);
  
  // optional float roll = 12;
  inline bool has_roll() const;
  inline void clear_roll();
  static const int kRollFieldNumber = 12;
  inline float roll() const;
  inline void set_roll(float value);
  
  // optional float pitch = 13;
  inline bool has_pitch() const;
  inline void clear_pitch();
  static const int kPitchFieldNumber = 13;
  inline float pitch() const;
  inline void set_pitch(float value);
  
  // optional float yaw = 14;
  inline bool has_yaw() const;
  inline void clear_yaw();
  static const int kYawFieldNumber = 14;
  inline float yaw() const;
  inline void set_yaw(float value);
  
  // optional float lon = 15;
  inline bool has_lon() const;
  inline void clear_lon();
  static const int kLonFieldNumber = 15;
  inline float lon() const;
  inline void set_lon(float value);
  
  // optional float lat = 16;
  inline bool has_lat() const;
  inline void clear_lat();
  static const int kLatFieldNumber = 16;
  inline float lat() const;
  inline void set_lat(float value);
  
  // optional float alt = 17;
  inline bool has_alt() const;
  inline void clear_alt();
  static const int kAltFieldNumber = 17;
  inline float alt() const;
  inline void set_alt(float value);
  
  // optional float ground_x = 18;
  inline bool has_ground_x() const;
  inline void clear_ground_x();
  static const int kGroundXFieldNumber = 18;
  inline float ground_x() const;
  inline void set_ground_x(float value);
  
  // optional float ground_y = 19;
  inline bool has_ground_y() const;
  inline void clear_ground_y();
  static const int kGroundYFieldNumber = 19;
  inline float ground_y() const;
  inline void set_ground_y(float value);
  
  // optional float ground_z = 20;
  inline bool has_ground_z() const;
  inline void clear_ground_z();
  static const int kGroundZFieldNumber = 20;
  inline float ground_z() const;
  inline void set_ground_z(float value);
  
  // repeated float camera_matrix = 21;
  inline int camera_matrix_size() const;
  inline void clear_camera_matrix();
  static const int kCameraMatrixFieldNumber = 21;
  inline float camera_matrix(int index) const;
  inline void set_camera_matrix(int index, float value);
  inline void add_camera_matrix(float value);
  inline const ::google::protobuf::RepeatedField< float >&
      camera_matrix() const;
  inline ::google::protobuf::RepeatedField< float >*
      mutable_camera_matrix();
  
  // @@protoc_insertion_point(class_scope:px.RGBDImage)
 private:
  inline void set_has_cols();
  inline void clear_has_cols();
  inline void set_has_rows();
  inline void clear_has_rows();
  inline void set_has_step1();
  inline void clear_has_step1();
  inline void set_has_type1();
  inline void clear_has_type1();
  inline void set_has_imagedata1();
  inline void clear_has_imagedata1();
  inline void set_has_step2();
  inline void clear_has_step2();
  inline void set_has_type2();
  inline void clear_has_type2();
  inline void set_has_imagedata2();
  inline void clear_has_imagedata2();
  inline void set_has_camera_config();
  inline void clear_has_camera_config();
  inline void set_has_camera_type();
  inline void clear_has_camera_type();
  inline void set_has_timestamp();
  inline void clear_has_timestamp();
  inline void set_has_roll();
  inline void clear_has_roll();
  inline void set_has_pitch();
  inline void clear_has_pitch();
  inline void set_has_yaw();
  inline void clear_has_yaw();
  inline void set_has_lon();
  inline void clear_has_lon();
  inline void set_has_lat();
  inline void clear_has_lat();
  inline void set_has_alt();
  inline void clear_has_alt();
  inline void set_has_ground_x();
  inline void clear_has_ground_x();
  inline void set_has_ground_y();
  inline void clear_has_ground_y();
  inline void set_has_ground_z();
  inline void clear_has_ground_z();
  
  ::google::protobuf::UnknownFieldSet _unknown_fields_;
  
  ::google::protobuf::uint32 cols_;
  ::google::protobuf::uint32 rows_;
  ::google::protobuf::uint32 step1_;
  ::google::protobuf::uint32 type1_;
  ::std::string* imagedata1_;
  ::google::protobuf::uint32 step2_;
  ::google::protobuf::uint32 type2_;
  ::std::string* imagedata2_;
  ::google::protobuf::uint32 camera_config_;
  ::google::protobuf::uint32 camera_type_;
  ::google::protobuf::uint64 timestamp_;
  float roll_;
  float pitch_;
  float yaw_;
  float lon_;
  float lat_;
  float alt_;
  float ground_x_;
  float ground_y_;
  ::google::protobuf::RepeatedField< float > camera_matrix_;
  float ground_z_;
  
  mutable int _cached_size_;
  ::google::protobuf::uint32 _has_bits_[(21 + 31) / 32];
  
  friend void  protobuf_AddDesc_pixhawk_2eproto();
  friend void protobuf_AssignDesc_pixhawk_2eproto();
  friend void protobuf_ShutdownFile_pixhawk_2eproto();
  
  void InitAsDefaultInstance();
  static RGBDImage* default_instance_;
};
// ===================================================================


// ===================================================================

// PointCloudXYZI_PointXYZI

// required float x = 1;
inline bool PointCloudXYZI_PointXYZI::has_x() const {
  return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void PointCloudXYZI_PointXYZI::set_has_x() {
  _has_bits_[0] |= 0x00000001u;
}
inline void PointCloudXYZI_PointXYZI::clear_has_x() {
  _has_bits_[0] &= ~0x00000001u;
}
inline void PointCloudXYZI_PointXYZI::clear_x() {
  x_ = 0;
  clear_has_x();
}
inline float PointCloudXYZI_PointXYZI::x() const {
  return x_;
}
inline void PointCloudXYZI_PointXYZI::set_x(float value) {
  set_has_x();
  x_ = value;
}

// required float y = 2;
inline bool PointCloudXYZI_PointXYZI::has_y() const {
  return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void PointCloudXYZI_PointXYZI::set_has_y() {
  _has_bits_[0] |= 0x00000002u;
}
inline void PointCloudXYZI_PointXYZI::clear_has_y() {
  _has_bits_[0] &= ~0x00000002u;
}
inline void PointCloudXYZI_PointXYZI::clear_y() {
  y_ = 0;
  clear_has_y();
}
inline float PointCloudXYZI_PointXYZI::y() const {
  return y_;
}
inline void PointCloudXYZI_PointXYZI::set_y(float value) {
  set_has_y();
  y_ = value;
}

// required float z = 3;
inline bool PointCloudXYZI_PointXYZI::has_z() const {
  return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void PointCloudXYZI_PointXYZI::set_has_z() {
  _has_bits_[0] |= 0x00000004u;
}
inline void PointCloudXYZI_PointXYZI::clear_has_z() {
  _has_bits_[0] &= ~0x00000004u;
}
inline void PointCloudXYZI_PointXYZI::clear_z() {
  z_ = 0;
  clear_has_z();
}
inline float PointCloudXYZI_PointXYZI::z() const {
  return z_;
}
inline void PointCloudXYZI_PointXYZI::set_z(float value) {
  set_has_z();
  z_ = value;
}

// required float intensity = 4;
inline bool PointCloudXYZI_PointXYZI::has_intensity() const {
  return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void PointCloudXYZI_PointXYZI::set_has_intensity() {
  _has_bits_[0] |= 0x00000008u;
}
inline void PointCloudXYZI_PointXYZI::clear_has_intensity() {
  _has_bits_[0] &= ~0x00000008u;
}
inline void PointCloudXYZI_PointXYZI::clear_intensity() {
  intensity_ = 0;
  clear_has_intensity();
}
inline float PointCloudXYZI_PointXYZI::intensity() const {
  return intensity_;
}
inline void PointCloudXYZI_PointXYZI::set_intensity(float value) {
  set_has_intensity();
  intensity_ = value;
}

// -------------------------------------------------------------------

// PointCloudXYZI

// repeated .px.PointCloudXYZI.PointXYZI points = 1;
inline int PointCloudXYZI::points_size() const {
  return points_.size();
}
inline void PointCloudXYZI::clear_points() {
  points_.Clear();
}
inline const ::px::PointCloudXYZI_PointXYZI& PointCloudXYZI::points(int index) const {
  return points_.Get(index);
}
inline ::px::PointCloudXYZI_PointXYZI* PointCloudXYZI::mutable_points(int index) {
  return points_.Mutable(index);
}
inline ::px::PointCloudXYZI_PointXYZI* PointCloudXYZI::add_points() {
  return points_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZI_PointXYZI >&
PointCloudXYZI::points() const {
  return points_;
}
inline ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZI_PointXYZI >*
PointCloudXYZI::mutable_points() {
  return &points_;
}

// -------------------------------------------------------------------

// PointCloudXYZRGB_PointXYZRGB

// required float x = 1;
inline bool PointCloudXYZRGB_PointXYZRGB::has_x() const {
  return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_has_x() {
  _has_bits_[0] |= 0x00000001u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_has_x() {
  _has_bits_[0] &= ~0x00000001u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_x() {
  x_ = 0;
  clear_has_x();
}
inline float PointCloudXYZRGB_PointXYZRGB::x() const {
  return x_;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_x(float value) {
  set_has_x();
  x_ = value;
}

// required float y = 2;
inline bool PointCloudXYZRGB_PointXYZRGB::has_y() const {
  return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_has_y() {
  _has_bits_[0] |= 0x00000002u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_has_y() {
  _has_bits_[0] &= ~0x00000002u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_y() {
  y_ = 0;
  clear_has_y();
}
inline float PointCloudXYZRGB_PointXYZRGB::y() const {
  return y_;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_y(float value) {
  set_has_y();
  y_ = value;
}

// required float z = 3;
inline bool PointCloudXYZRGB_PointXYZRGB::has_z() const {
  return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_has_z() {
  _has_bits_[0] |= 0x00000004u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_has_z() {
  _has_bits_[0] &= ~0x00000004u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_z() {
  z_ = 0;
  clear_has_z();
}
inline float PointCloudXYZRGB_PointXYZRGB::z() const {
  return z_;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_z(float value) {
  set_has_z();
  z_ = value;
}

// required float rgb = 4;
inline bool PointCloudXYZRGB_PointXYZRGB::has_rgb() const {
  return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_has_rgb() {
  _has_bits_[0] |= 0x00000008u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_has_rgb() {
  _has_bits_[0] &= ~0x00000008u;
}
inline void PointCloudXYZRGB_PointXYZRGB::clear_rgb() {
  rgb_ = 0;
  clear_has_rgb();
}
inline float PointCloudXYZRGB_PointXYZRGB::rgb() const {
  return rgb_;
}
inline void PointCloudXYZRGB_PointXYZRGB::set_rgb(float value) {
  set_has_rgb();
  rgb_ = value;
}

// -------------------------------------------------------------------

// PointCloudXYZRGB

// repeated .px.PointCloudXYZRGB.PointXYZRGB points = 1;
inline int PointCloudXYZRGB::points_size() const {
  return points_.size();
}
inline void PointCloudXYZRGB::clear_points() {
  points_.Clear();
}
inline const ::px::PointCloudXYZRGB_PointXYZRGB& PointCloudXYZRGB::points(int index) const {
  return points_.Get(index);
}
inline ::px::PointCloudXYZRGB_PointXYZRGB* PointCloudXYZRGB::mutable_points(int index) {
  return points_.Mutable(index);
}
inline ::px::PointCloudXYZRGB_PointXYZRGB* PointCloudXYZRGB::add_points() {
  return points_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZRGB_PointXYZRGB >&
PointCloudXYZRGB::points() const {
  return points_;
}
inline ::google::protobuf::RepeatedPtrField< ::px::PointCloudXYZRGB_PointXYZRGB >*
PointCloudXYZRGB::mutable_points() {
  return &points_;
}

// -------------------------------------------------------------------

// RGBDImage

// required uint32 cols = 1;
inline bool RGBDImage::has_cols() const {
  return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void RGBDImage::set_has_cols() {
  _has_bits_[0] |= 0x00000001u;
}
inline void RGBDImage::clear_has_cols() {
  _has_bits_[0] &= ~0x00000001u;
}
inline void RGBDImage::clear_cols() {
  cols_ = 0u;
  clear_has_cols();
}
inline ::google::protobuf::uint32 RGBDImage::cols() const {
  return cols_;
}
inline void RGBDImage::set_cols(::google::protobuf::uint32 value) {
  set_has_cols();
  cols_ = value;
}

// required uint32 rows = 2;
inline bool RGBDImage::has_rows() const {
  return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void RGBDImage::set_has_rows() {
  _has_bits_[0] |= 0x00000002u;
}
inline void RGBDImage::clear_has_rows() {
  _has_bits_[0] &= ~0x00000002u;
}
inline void RGBDImage::clear_rows() {
  rows_ = 0u;
  clear_has_rows();
}
inline ::google::protobuf::uint32 RGBDImage::rows() const {
  return rows_;
}
inline void RGBDImage::set_rows(::google::protobuf::uint32 value) {
  set_has_rows();
  rows_ = value;
}

// required uint32 step1 = 3;
inline bool RGBDImage::has_step1() const {
  return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void RGBDImage::set_has_step1() {
  _has_bits_[0] |= 0x00000004u;
}
inline void RGBDImage::clear_has_step1() {
  _has_bits_[0] &= ~0x00000004u;
}
inline void RGBDImage::clear_step1() {
  step1_ = 0u;
  clear_has_step1();
}
inline ::google::protobuf::uint32 RGBDImage::step1() const {
  return step1_;
}
inline void RGBDImage::set_step1(::google::protobuf::uint32 value) {
  set_has_step1();
  step1_ = value;
}

// required uint32 type1 = 4;
inline bool RGBDImage::has_type1() const {
  return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void RGBDImage::set_has_type1() {
  _has_bits_[0] |= 0x00000008u;
}
inline void RGBDImage::clear_has_type1() {
  _has_bits_[0] &= ~0x00000008u;
}
inline void RGBDImage::clear_type1() {
  type1_ = 0u;
  clear_has_type1();
}
inline ::google::protobuf::uint32 RGBDImage::type1() const {
  return type1_;
}
inline void RGBDImage::set_type1(::google::protobuf::uint32 value) {
  set_has_type1();
  type1_ = value;
}

// required bytes imageData1 = 5;
inline bool RGBDImage::has_imagedata1() const {
  return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void RGBDImage::set_has_imagedata1() {
  _has_bits_[0] |= 0x00000010u;
}
inline void RGBDImage::clear_has_imagedata1() {
  _has_bits_[0] &= ~0x00000010u;
}
inline void RGBDImage::clear_imagedata1() {
  if (imagedata1_ != &::google::protobuf::internal::kEmptyString) {
    imagedata1_->clear();
  }
  clear_has_imagedata1();
}
inline const ::std::string& RGBDImage::imagedata1() const {
  return *imagedata1_;
}
inline void RGBDImage::set_imagedata1(const ::std::string& value) {
  set_has_imagedata1();
  if (imagedata1_ == &::google::protobuf::internal::kEmptyString) {
    imagedata1_ = new ::std::string;
  }
  imagedata1_->assign(value);
}
inline void RGBDImage::set_imagedata1(const char* value) {
  set_has_imagedata1();
  if (imagedata1_ == &::google::protobuf::internal::kEmptyString) {
    imagedata1_ = new ::std::string;
  }
  imagedata1_->assign(value);
}
inline void RGBDImage::set_imagedata1(const void* value, size_t size) {
  set_has_imagedata1();
  if (imagedata1_ == &::google::protobuf::internal::kEmptyString) {
    imagedata1_ = new ::std::string;
  }
  imagedata1_->assign(reinterpret_cast<const char*>(value), size);
}
inline ::std::string* RGBDImage::mutable_imagedata1() {
  set_has_imagedata1();
  if (imagedata1_ == &::google::protobuf::internal::kEmptyString) {
    imagedata1_ = new ::std::string;
  }
  return imagedata1_;
}
inline ::std::string* RGBDImage::release_imagedata1() {
  clear_has_imagedata1();
  if (imagedata1_ == &::google::protobuf::internal::kEmptyString) {
    return NULL;
  } else {
    ::std::string* temp = imagedata1_;
    imagedata1_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
    return temp;
  }
}

// required uint32 step2 = 6;
inline bool RGBDImage::has_step2() const {
  return (_has_bits_[0] & 0x00000020u) != 0;
}
inline void RGBDImage::set_has_step2() {
  _has_bits_[0] |= 0x00000020u;
}
inline void RGBDImage::clear_has_step2() {
  _has_bits_[0] &= ~0x00000020u;
}
inline void RGBDImage::clear_step2() {
  step2_ = 0u;
  clear_has_step2();
}
inline ::google::protobuf::uint32 RGBDImage::step2() const {
  return step2_;
}
inline void RGBDImage::set_step2(::google::protobuf::uint32 value) {
  set_has_step2();
  step2_ = value;
}

// required uint32 type2 = 7;
inline bool RGBDImage::has_type2() const {
  return (_has_bits_[0] & 0x00000040u) != 0;
}
inline void RGBDImage::set_has_type2() {
  _has_bits_[0] |= 0x00000040u;
}
inline void RGBDImage::clear_has_type2() {
  _has_bits_[0] &= ~0x00000040u;
}
inline void RGBDImage::clear_type2() {
  type2_ = 0u;
  clear_has_type2();
}
inline ::google::protobuf::uint32 RGBDImage::type2() const {
  return type2_;
}
inline void RGBDImage::set_type2(::google::protobuf::uint32 value) {
  set_has_type2();
  type2_ = value;
}

// required bytes imageData2 = 8;
inline bool RGBDImage::has_imagedata2() const {
  return (_has_bits_[0] & 0x00000080u) != 0;
}
inline void RGBDImage::set_has_imagedata2() {
  _has_bits_[0] |= 0x00000080u;
}
inline void RGBDImage::clear_has_imagedata2() {
  _has_bits_[0] &= ~0x00000080u;
}
inline void RGBDImage::clear_imagedata2() {
  if (imagedata2_ != &::google::protobuf::internal::kEmptyString) {
    imagedata2_->clear();
  }
  clear_has_imagedata2();
}
inline const ::std::string& RGBDImage::imagedata2() const {
  return *imagedata2_;
}
inline void RGBDImage::set_imagedata2(const ::std::string& value) {
  set_has_imagedata2();
  if (imagedata2_ == &::google::protobuf::internal::kEmptyString) {
    imagedata2_ = new ::std::string;
  }
  imagedata2_->assign(value);
}
inline void RGBDImage::set_imagedata2(const char* value) {
  set_has_imagedata2();
  if (imagedata2_ == &::google::protobuf::internal::kEmptyString) {
    imagedata2_ = new ::std::string;
  }
  imagedata2_->assign(value);
}
inline void RGBDImage::set_imagedata2(const void* value, size_t size) {
  set_has_imagedata2();
  if (imagedata2_ == &::google::protobuf::internal::kEmptyString) {
    imagedata2_ = new ::std::string;
  }
  imagedata2_->assign(reinterpret_cast<const char*>(value), size);
}
inline ::std::string* RGBDImage::mutable_imagedata2() {
  set_has_imagedata2();
  if (imagedata2_ == &::google::protobuf::internal::kEmptyString) {
    imagedata2_ = new ::std::string;
  }
  return imagedata2_;
}
inline ::std::string* RGBDImage::release_imagedata2() {
  clear_has_imagedata2();
  if (imagedata2_ == &::google::protobuf::internal::kEmptyString) {
    return NULL;
  } else {
    ::std::string* temp = imagedata2_;
    imagedata2_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
    return temp;
  }
}

// optional uint32 camera_config = 9;
inline bool RGBDImage::has_camera_config() const {
  return (_has_bits_[0] & 0x00000100u) != 0;
}
inline void RGBDImage::set_has_camera_config() {
  _has_bits_[0] |= 0x00000100u;
}
inline void RGBDImage::clear_has_camera_config() {
  _has_bits_[0] &= ~0x00000100u;
}
inline void RGBDImage::clear_camera_config() {
  camera_config_ = 0u;
  clear_has_camera_config();
}
inline ::google::protobuf::uint32 RGBDImage::camera_config() const {
  return camera_config_;
}
inline void RGBDImage::set_camera_config(::google::protobuf::uint32 value) {
  set_has_camera_config();
  camera_config_ = value;
}

// optional uint32 camera_type = 10;
inline bool RGBDImage::has_camera_type() const {
  return (_has_bits_[0] & 0x00000200u) != 0;
}
inline void RGBDImage::set_has_camera_type() {
  _has_bits_[0] |= 0x00000200u;
}
inline void RGBDImage::clear_has_camera_type() {
  _has_bits_[0] &= ~0x00000200u;
}
inline void RGBDImage::clear_camera_type() {
  camera_type_ = 0u;
  clear_has_camera_type();
}
inline ::google::protobuf::uint32 RGBDImage::camera_type() const {
  return camera_type_;
}
inline void RGBDImage::set_camera_type(::google::protobuf::uint32 value) {
  set_has_camera_type();
  camera_type_ = value;
}

// optional uint64 timestamp = 11;
inline bool RGBDImage::has_timestamp() const {
  return (_has_bits_[0] & 0x00000400u) != 0;
}
inline void RGBDImage::set_has_timestamp() {
  _has_bits_[0] |= 0x00000400u;
}
inline void RGBDImage::clear_has_timestamp() {
  _has_bits_[0] &= ~0x00000400u;
}
inline void RGBDImage::clear_timestamp() {
  timestamp_ = GOOGLE_ULONGLONG(0);
  clear_has_timestamp();
}
inline ::google::protobuf::uint64 RGBDImage::timestamp() const {
  return timestamp_;
}
inline void RGBDImage::set_timestamp(::google::protobuf::uint64 value) {
  set_has_timestamp();
  timestamp_ = value;
}

// optional float roll = 12;
inline bool RGBDImage::has_roll() const {
  return (_has_bits_[0] & 0x00000800u) != 0;
}
inline void RGBDImage::set_has_roll() {
  _has_bits_[0] |= 0x00000800u;
}
inline void RGBDImage::clear_has_roll() {
  _has_bits_[0] &= ~0x00000800u;
}
inline void RGBDImage::clear_roll() {
  roll_ = 0;
  clear_has_roll();
}
inline float RGBDImage::roll() const {
  return roll_;
}
inline void RGBDImage::set_roll(float value) {
  set_has_roll();
  roll_ = value;
}

// optional float pitch = 13;
inline bool RGBDImage::has_pitch() const {
  return (_has_bits_[0] & 0x00001000u) != 0;
}
inline void RGBDImage::set_has_pitch() {
  _has_bits_[0] |= 0x00001000u;
}
inline void RGBDImage::clear_has_pitch() {
  _has_bits_[0] &= ~0x00001000u;
}
inline void RGBDImage::clear_pitch() {
  pitch_ = 0;
  clear_has_pitch();
}
inline float RGBDImage::pitch() const {
  return pitch_;
}
inline void RGBDImage::set_pitch(float value) {
  set_has_pitch();
  pitch_ = value;
}

// optional float yaw = 14;
inline bool RGBDImage::has_yaw() const {
  return (_has_bits_[0] & 0x00002000u) != 0;
}
inline void RGBDImage::set_has_yaw() {
  _has_bits_[0] |= 0x00002000u;
}
inline void RGBDImage::clear_has_yaw() {
  _has_bits_[0] &= ~0x00002000u;
}
inline void RGBDImage::clear_yaw() {
  yaw_ = 0;
  clear_has_yaw();
}
inline float RGBDImage::yaw() const {
  return yaw_;
}
inline void RGBDImage::set_yaw(float value) {
  set_has_yaw();
  yaw_ = value;
}

// optional float lon = 15;
inline bool RGBDImage::has_lon() const {
  return (_has_bits_[0] & 0x00004000u) != 0;
}
inline void RGBDImage::set_has_lon() {
  _has_bits_[0] |= 0x00004000u;
}
inline void RGBDImage::clear_has_lon() {
  _has_bits_[0] &= ~0x00004000u;
}
inline void RGBDImage::clear_lon() {
  lon_ = 0;
  clear_has_lon();
}
inline float RGBDImage::lon() const {
  return lon_;
}
inline void RGBDImage::set_lon(float value) {
  set_has_lon();
  lon_ = value;
}

// optional float lat = 16;
inline bool RGBDImage::has_lat() const {
  return (_has_bits_[0] & 0x00008000u) != 0;
}
inline void RGBDImage::set_has_lat() {
  _has_bits_[0] |= 0x00008000u;
}
inline void RGBDImage::clear_has_lat() {
  _has_bits_[0] &= ~0x00008000u;
}
inline void RGBDImage::clear_lat() {
  lat_ = 0;
  clear_has_lat();
}
inline float RGBDImage::lat() const {
  return lat_;
}
inline void RGBDImage::set_lat(float value) {
  set_has_lat();
  lat_ = value;
}

// optional float alt = 17;
inline bool RGBDImage::has_alt() const {
  return (_has_bits_[0] & 0x00010000u) != 0;
}
inline void RGBDImage::set_has_alt() {
  _has_bits_[0] |= 0x00010000u;
}
inline void RGBDImage::clear_has_alt() {
  _has_bits_[0] &= ~0x00010000u;
}
inline void RGBDImage::clear_alt() {
  alt_ = 0;
  clear_has_alt();
}
inline float RGBDImage::alt() const {
  return alt_;
}
inline void RGBDImage::set_alt(float value) {
  set_has_alt();
  alt_ = value;
}

// optional float ground_x = 18;
inline bool RGBDImage::has_ground_x() const {
  return (_has_bits_[0] & 0x00020000u) != 0;
}
inline void RGBDImage::set_has_ground_x() {
  _has_bits_[0] |= 0x00020000u;
}
inline void RGBDImage::clear_has_ground_x() {
  _has_bits_[0] &= ~0x00020000u;
}
inline void RGBDImage::clear_ground_x() {
  ground_x_ = 0;
  clear_has_ground_x();
}
inline float RGBDImage::ground_x() const {
  return ground_x_;
}
inline void RGBDImage::set_ground_x(float value) {
  set_has_ground_x();
  ground_x_ = value;
}

// optional float ground_y = 19;
inline bool RGBDImage::has_ground_y() const {
  return (_has_bits_[0] & 0x00040000u) != 0;
}
inline void RGBDImage::set_has_ground_y() {
  _has_bits_[0] |= 0x00040000u;
}
inline void RGBDImage::clear_has_ground_y() {
  _has_bits_[0] &= ~0x00040000u;
}
inline void RGBDImage::clear_ground_y() {
  ground_y_ = 0;
  clear_has_ground_y();
}
inline float RGBDImage::ground_y() const {
  return ground_y_;
}
inline void RGBDImage::set_ground_y(float value) {
  set_has_ground_y();
  ground_y_ = value;
}

// optional float ground_z = 20;
inline bool RGBDImage::has_ground_z() const {
  return (_has_bits_[0] & 0x00080000u) != 0;
}
inline void RGBDImage::set_has_ground_z() {
  _has_bits_[0] |= 0x00080000u;
}
inline void RGBDImage::clear_has_ground_z() {
  _has_bits_[0] &= ~0x00080000u;
}
inline void RGBDImage::clear_ground_z() {
  ground_z_ = 0;
  clear_has_ground_z();
}
inline float RGBDImage::ground_z() const {
  return ground_z_;
}
inline void RGBDImage::set_ground_z(float value) {
  set_has_ground_z();
  ground_z_ = value;
}

// repeated float camera_matrix = 21;
inline int RGBDImage::camera_matrix_size() const {
  return camera_matrix_.size();
}
inline void RGBDImage::clear_camera_matrix() {
  camera_matrix_.Clear();
}
inline float RGBDImage::camera_matrix(int index) const {
  return camera_matrix_.Get(index);
}
inline void RGBDImage::set_camera_matrix(int index, float value) {
  camera_matrix_.Set(index, value);
}
inline void RGBDImage::add_camera_matrix(float value) {
  camera_matrix_.Add(value);
}
inline const ::google::protobuf::RepeatedField< float >&
RGBDImage::camera_matrix() const {
  return camera_matrix_;
}
inline ::google::protobuf::RepeatedField< float >*
RGBDImage::mutable_camera_matrix() {
  return &camera_matrix_;
}


// @@protoc_insertion_point(namespace_scope)

}  // namespace px

#ifndef SWIG
namespace google {
namespace protobuf {


}  // namespace google
}  // namespace protobuf
#endif  // SWIG

// @@protoc_insertion_point(global_scope)

#endif  // PROTOBUF_pixhawk_2eproto__INCLUDED