|
@@ -108,6 +108,7 @@ enum Message_type {
|
|
|
eParkspace_force_update_response_msg = 57,
|
|
|
eParkspace_confirm_alloc_request_msg = 58,
|
|
|
eParkspace_confirm_alloc_response_msg = 59,
|
|
|
+ eParkspace_allocation_data_msg = 60,
|
|
|
eStore_command_request_msg = 65,
|
|
|
eStore_command_response_msg = 66,
|
|
|
ePickup_command_request_msg = 67,
|
|
@@ -206,14 +207,15 @@ inline bool Error_level_Parse(
|
|
|
Error_level_descriptor(), name, value);
|
|
|
}
|
|
|
enum Parkspace_status {
|
|
|
- eParkspace_empty = 0,
|
|
|
- eParkspace_occupied = 1,
|
|
|
- eParkspace_reserved = 2,
|
|
|
- eParkspace_locked = 3,
|
|
|
- eParkspace_error = 4
|
|
|
+ eParkspace_status_unknow = 0,
|
|
|
+ eParkspace_empty = 1,
|
|
|
+ eParkspace_occupied = 2,
|
|
|
+ eParkspace_reserved = 3,
|
|
|
+ eParkspace_locked = 4,
|
|
|
+ eParkspace_error = 5
|
|
|
};
|
|
|
bool Parkspace_status_IsValid(int value);
|
|
|
-const Parkspace_status Parkspace_status_MIN = eParkspace_empty;
|
|
|
+const Parkspace_status Parkspace_status_MIN = eParkspace_status_unknow;
|
|
|
const Parkspace_status Parkspace_status_MAX = eParkspace_error;
|
|
|
const int Parkspace_status_ARRAYSIZE = Parkspace_status_MAX + 1;
|
|
|
|
|
@@ -228,11 +230,12 @@ inline bool Parkspace_status_Parse(
|
|
|
Parkspace_status_descriptor(), name, value);
|
|
|
}
|
|
|
enum Direction {
|
|
|
+ eDirection_unknow = 0,
|
|
|
eForward = 1,
|
|
|
eBackward = 2
|
|
|
};
|
|
|
bool Direction_IsValid(int value);
|
|
|
-const Direction Direction_MIN = eForward;
|
|
|
+const Direction Direction_MIN = eDirection_unknow;
|
|
|
const Direction Direction_MAX = eBackward;
|
|
|
const int Direction_ARRAYSIZE = Direction_MAX + 1;
|
|
|
|
|
@@ -247,13 +250,14 @@ inline bool Direction_Parse(
|
|
|
Direction_descriptor(), name, value);
|
|
|
}
|
|
|
enum Parkspace_path {
|
|
|
+ UNKNOW_PATH = 0,
|
|
|
OPTIMAL_PATH = 1,
|
|
|
LEFT_PATH = 2,
|
|
|
RIGHT_PATH = 3,
|
|
|
TEMPORARY_CACHE_PATH = 4
|
|
|
};
|
|
|
bool Parkspace_path_IsValid(int value);
|
|
|
-const Parkspace_path Parkspace_path_MIN = OPTIMAL_PATH;
|
|
|
+const Parkspace_path Parkspace_path_MIN = UNKNOW_PATH;
|
|
|
const Parkspace_path Parkspace_path_MAX = TEMPORARY_CACHE_PATH;
|
|
|
const int Parkspace_path_ARRAYSIZE = Parkspace_path_MAX + 1;
|
|
|
|
|
@@ -268,12 +272,13 @@ inline bool Parkspace_path_Parse(
|
|
|
Parkspace_path_descriptor(), name, value);
|
|
|
}
|
|
|
enum Parkspace_type {
|
|
|
+ UNKNOW_PARKSPACE_TYPE = 0,
|
|
|
MIN_PARKINGSPACE = 1,
|
|
|
MID_PARKINGSPACE = 2,
|
|
|
BIG_PARKINGSPACE = 3
|
|
|
};
|
|
|
bool Parkspace_type_IsValid(int value);
|
|
|
-const Parkspace_type Parkspace_type_MIN = MIN_PARKINGSPACE;
|
|
|
+const Parkspace_type Parkspace_type_MIN = UNKNOW_PARKSPACE_TYPE;
|
|
|
const Parkspace_type Parkspace_type_MAX = BIG_PARKINGSPACE;
|
|
|
const int Parkspace_type_ARRAYSIZE = Parkspace_type_MAX + 1;
|
|
|
|
|
@@ -433,28 +438,28 @@ class Base_info : public ::google::protobuf::Message /* @@protoc_insertion_point
|
|
|
|
|
|
// accessors -------------------------------------------------------
|
|
|
|
|
|
- // required .message.Message_type msg_type = 1;
|
|
|
+ // required .message.Message_type msg_type = 1 [default = eBase_msg];
|
|
|
bool has_msg_type() const;
|
|
|
void clear_msg_type();
|
|
|
static const int kMsgTypeFieldNumber = 1;
|
|
|
::message::Message_type msg_type() const;
|
|
|
void set_msg_type(::message::Message_type value);
|
|
|
|
|
|
- // optional int32 timeout_ms = 2;
|
|
|
+ // optional int32 timeout_ms = 2 [default = 0];
|
|
|
bool has_timeout_ms() const;
|
|
|
void clear_timeout_ms();
|
|
|
static const int kTimeoutMsFieldNumber = 2;
|
|
|
::google::protobuf::int32 timeout_ms() const;
|
|
|
void set_timeout_ms(::google::protobuf::int32 value);
|
|
|
|
|
|
- // required .message.Communicator sender = 3;
|
|
|
+ // required .message.Communicator sender = 3 [default = eEmpty];
|
|
|
bool has_sender() const;
|
|
|
void clear_sender();
|
|
|
static const int kSenderFieldNumber = 3;
|
|
|
::message::Communicator sender() const;
|
|
|
void set_sender(::message::Communicator value);
|
|
|
|
|
|
- // required .message.Communicator receiver = 4;
|
|
|
+ // required .message.Communicator receiver = 4 [default = eEmpty];
|
|
|
bool has_receiver() const;
|
|
|
void clear_receiver();
|
|
|
static const int kReceiverFieldNumber = 4;
|
|
@@ -688,7 +693,7 @@ class Error_manager : public ::google::protobuf::Message /* @@protoc_insertion_p
|
|
|
|
|
|
// accessors -------------------------------------------------------
|
|
|
|
|
|
- // optional string error_description = 3;
|
|
|
+ // optional string error_description = 3 [default = ""];
|
|
|
bool has_error_description() const;
|
|
|
void clear_error_description();
|
|
|
static const int kErrorDescriptionFieldNumber = 3;
|
|
@@ -703,14 +708,14 @@ class Error_manager : public ::google::protobuf::Message /* @@protoc_insertion_p
|
|
|
::std::string* release_error_description();
|
|
|
void set_allocated_error_description(::std::string* error_description);
|
|
|
|
|
|
- // required int32 error_code = 1;
|
|
|
+ // required int32 error_code = 1 [default = 0];
|
|
|
bool has_error_code() const;
|
|
|
void clear_error_code();
|
|
|
static const int kErrorCodeFieldNumber = 1;
|
|
|
::google::protobuf::int32 error_code() const;
|
|
|
void set_error_code(::google::protobuf::int32 value);
|
|
|
|
|
|
- // optional .message.Error_level error_level = 2;
|
|
|
+ // optional .message.Error_level error_level = 2 [default = NORMAL];
|
|
|
bool has_error_level() const;
|
|
|
void clear_error_level();
|
|
|
static const int kErrorLevelFieldNumber = 2;
|
|
@@ -826,70 +831,70 @@ class Locate_information : public ::google::protobuf::Message /* @@protoc_insert
|
|
|
|
|
|
// accessors -------------------------------------------------------
|
|
|
|
|
|
- // optional float locate_x = 1;
|
|
|
+ // optional float locate_x = 1 [default = 0];
|
|
|
bool has_locate_x() const;
|
|
|
void clear_locate_x();
|
|
|
static const int kLocateXFieldNumber = 1;
|
|
|
float locate_x() const;
|
|
|
void set_locate_x(float value);
|
|
|
|
|
|
- // optional float locate_y = 2;
|
|
|
+ // optional float locate_y = 2 [default = 0];
|
|
|
bool has_locate_y() const;
|
|
|
void clear_locate_y();
|
|
|
static const int kLocateYFieldNumber = 2;
|
|
|
float locate_y() const;
|
|
|
void set_locate_y(float value);
|
|
|
|
|
|
- // optional float locate_angle = 3;
|
|
|
+ // optional float locate_angle = 3 [default = 0];
|
|
|
bool has_locate_angle() const;
|
|
|
void clear_locate_angle();
|
|
|
static const int kLocateAngleFieldNumber = 3;
|
|
|
float locate_angle() const;
|
|
|
void set_locate_angle(float value);
|
|
|
|
|
|
- // optional float locate_length = 4;
|
|
|
+ // optional float locate_length = 4 [default = 0];
|
|
|
bool has_locate_length() const;
|
|
|
void clear_locate_length();
|
|
|
static const int kLocateLengthFieldNumber = 4;
|
|
|
float locate_length() const;
|
|
|
void set_locate_length(float value);
|
|
|
|
|
|
- // optional float locate_width = 5;
|
|
|
+ // optional float locate_width = 5 [default = 0];
|
|
|
bool has_locate_width() const;
|
|
|
void clear_locate_width();
|
|
|
static const int kLocateWidthFieldNumber = 5;
|
|
|
float locate_width() const;
|
|
|
void set_locate_width(float value);
|
|
|
|
|
|
- // optional float locate_height = 6;
|
|
|
+ // optional float locate_height = 6 [default = 0];
|
|
|
bool has_locate_height() const;
|
|
|
void clear_locate_height();
|
|
|
static const int kLocateHeightFieldNumber = 6;
|
|
|
float locate_height() const;
|
|
|
void set_locate_height(float value);
|
|
|
|
|
|
- // optional float locate_wheel_base = 7;
|
|
|
+ // optional float locate_wheel_base = 7 [default = 0];
|
|
|
bool has_locate_wheel_base() const;
|
|
|
void clear_locate_wheel_base();
|
|
|
static const int kLocateWheelBaseFieldNumber = 7;
|
|
|
float locate_wheel_base() const;
|
|
|
void set_locate_wheel_base(float value);
|
|
|
|
|
|
- // optional float locate_wheel_width = 8;
|
|
|
+ // optional float locate_wheel_width = 8 [default = 0];
|
|
|
bool has_locate_wheel_width() const;
|
|
|
void clear_locate_wheel_width();
|
|
|
static const int kLocateWheelWidthFieldNumber = 8;
|
|
|
float locate_wheel_width() const;
|
|
|
void set_locate_wheel_width(float value);
|
|
|
|
|
|
- // optional bool locate_correct = 9;
|
|
|
+ // optional bool locate_correct = 9 [default = false];
|
|
|
bool has_locate_correct() const;
|
|
|
void clear_locate_correct();
|
|
|
static const int kLocateCorrectFieldNumber = 9;
|
|
|
bool locate_correct() const;
|
|
|
void set_locate_correct(bool value);
|
|
|
|
|
|
- // optional float locate_front_theta = 10;
|
|
|
+ // optional float locate_front_theta = 10 [default = 0];
|
|
|
bool has_locate_front_theta() const;
|
|
|
void clear_locate_front_theta();
|
|
|
static const int kLocateFrontThetaFieldNumber = 10;
|
|
@@ -1026,7 +1031,7 @@ class Car_info : public ::google::protobuf::Message /* @@protoc_insertion_point(
|
|
|
|
|
|
// accessors -------------------------------------------------------
|
|
|
|
|
|
- // optional string license = 4;
|
|
|
+ // optional string license = 4 [default = ""];
|
|
|
bool has_license() const;
|
|
|
void clear_license();
|
|
|
static const int kLicenseFieldNumber = 4;
|
|
@@ -1041,27 +1046,41 @@ class Car_info : public ::google::protobuf::Message /* @@protoc_insertion_point(
|
|
|
::std::string* release_license();
|
|
|
void set_allocated_license(::std::string* license);
|
|
|
|
|
|
- // optional float car_length = 1;
|
|
|
+ // optional float car_length = 1 [default = 0];
|
|
|
bool has_car_length() const;
|
|
|
void clear_car_length();
|
|
|
static const int kCarLengthFieldNumber = 1;
|
|
|
float car_length() const;
|
|
|
void set_car_length(float value);
|
|
|
|
|
|
- // optional float car_width = 2;
|
|
|
+ // optional float car_width = 2 [default = 0];
|
|
|
bool has_car_width() const;
|
|
|
void clear_car_width();
|
|
|
static const int kCarWidthFieldNumber = 2;
|
|
|
float car_width() const;
|
|
|
void set_car_width(float value);
|
|
|
|
|
|
- // optional float car_height = 3;
|
|
|
+ // optional float car_height = 3 [default = 0];
|
|
|
bool has_car_height() const;
|
|
|
void clear_car_height();
|
|
|
static const int kCarHeightFieldNumber = 3;
|
|
|
float car_height() const;
|
|
|
void set_car_height(float value);
|
|
|
|
|
|
+ // optional float car_wheel_base = 5 [default = 0];
|
|
|
+ bool has_car_wheel_base() const;
|
|
|
+ void clear_car_wheel_base();
|
|
|
+ static const int kCarWheelBaseFieldNumber = 5;
|
|
|
+ float car_wheel_base() const;
|
|
|
+ void set_car_wheel_base(float value);
|
|
|
+
|
|
|
+ // optional float car_wheel_width = 6 [default = 0];
|
|
|
+ bool has_car_wheel_width() const;
|
|
|
+ void clear_car_wheel_width();
|
|
|
+ static const int kCarWheelWidthFieldNumber = 6;
|
|
|
+ float car_wheel_width() const;
|
|
|
+ void set_car_wheel_width(float value);
|
|
|
+
|
|
|
// @@protoc_insertion_point(class_scope:message.Car_info)
|
|
|
private:
|
|
|
void set_has_car_length();
|
|
@@ -1072,6 +1091,10 @@ class Car_info : public ::google::protobuf::Message /* @@protoc_insertion_point(
|
|
|
void clear_has_car_height();
|
|
|
void set_has_license();
|
|
|
void clear_has_license();
|
|
|
+ void set_has_car_wheel_base();
|
|
|
+ void clear_has_car_wheel_base();
|
|
|
+ void set_has_car_wheel_width();
|
|
|
+ void clear_has_car_wheel_width();
|
|
|
|
|
|
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
|
|
|
::google::protobuf::internal::HasBits<1> _has_bits_;
|
|
@@ -1080,6 +1103,8 @@ class Car_info : public ::google::protobuf::Message /* @@protoc_insertion_point(
|
|
|
float car_length_;
|
|
|
float car_width_;
|
|
|
float car_height_;
|
|
|
+ float car_wheel_base_;
|
|
|
+ float car_wheel_width_;
|
|
|
friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
|
|
|
friend void ::protobuf_message_5fbase_2eproto::InitDefaultsCar_infoImpl();
|
|
|
};
|
|
@@ -1174,7 +1199,7 @@ class Parkspace_info : public ::google::protobuf::Message /* @@protoc_insertion_
|
|
|
|
|
|
// accessors -------------------------------------------------------
|
|
|
|
|
|
- // optional string entry_time = 10;
|
|
|
+ // optional string entry_time = 10 [default = ""];
|
|
|
bool has_entry_time() const;
|
|
|
void clear_entry_time();
|
|
|
static const int kEntryTimeFieldNumber = 10;
|
|
@@ -1189,7 +1214,7 @@ class Parkspace_info : public ::google::protobuf::Message /* @@protoc_insertion_
|
|
|
::std::string* release_entry_time();
|
|
|
void set_allocated_entry_time(::std::string* entry_time);
|
|
|
|
|
|
- // optional string leave_time = 11;
|
|
|
+ // optional string leave_time = 11 [default = ""];
|
|
|
bool has_leave_time() const;
|
|
|
void clear_leave_time();
|
|
|
static const int kLeaveTimeFieldNumber = 11;
|
|
@@ -1213,90 +1238,90 @@ class Parkspace_info : public ::google::protobuf::Message /* @@protoc_insertion_
|
|
|
::message::Car_info* mutable_car_info();
|
|
|
void set_allocated_car_info(::message::Car_info* car_info);
|
|
|
|
|
|
- // optional int32 parkspace_id = 1;
|
|
|
+ // optional int32 parkspace_id = 1 [default = 0];
|
|
|
bool has_parkspace_id() const;
|
|
|
void clear_parkspace_id();
|
|
|
static const int kParkspaceIdFieldNumber = 1;
|
|
|
::google::protobuf::int32 parkspace_id() const;
|
|
|
void set_parkspace_id(::google::protobuf::int32 value);
|
|
|
|
|
|
- // optional int32 index = 2;
|
|
|
+ // optional int32 index = 2 [default = 0];
|
|
|
bool has_index() const;
|
|
|
void clear_index();
|
|
|
static const int kIndexFieldNumber = 2;
|
|
|
::google::protobuf::int32 index() const;
|
|
|
void set_index(::google::protobuf::int32 value);
|
|
|
|
|
|
- // optional int32 floor = 4;
|
|
|
+ // optional .message.Direction direction = 3 [default = eDirection_unknow];
|
|
|
+ bool has_direction() const;
|
|
|
+ void clear_direction();
|
|
|
+ static const int kDirectionFieldNumber = 3;
|
|
|
+ ::message::Direction direction() const;
|
|
|
+ void set_direction(::message::Direction value);
|
|
|
+
|
|
|
+ // optional int32 floor = 4 [default = 0];
|
|
|
bool has_floor() const;
|
|
|
void clear_floor();
|
|
|
static const int kFloorFieldNumber = 4;
|
|
|
::google::protobuf::int32 floor() const;
|
|
|
void set_floor(::google::protobuf::int32 value);
|
|
|
|
|
|
- // optional float length = 5;
|
|
|
+ // optional float length = 5 [default = 0];
|
|
|
bool has_length() const;
|
|
|
void clear_length();
|
|
|
static const int kLengthFieldNumber = 5;
|
|
|
float length() const;
|
|
|
void set_length(float value);
|
|
|
|
|
|
- // optional float width = 6;
|
|
|
+ // optional float width = 6 [default = 0];
|
|
|
bool has_width() const;
|
|
|
void clear_width();
|
|
|
static const int kWidthFieldNumber = 6;
|
|
|
float width() const;
|
|
|
void set_width(float value);
|
|
|
|
|
|
- // optional float height = 7;
|
|
|
+ // optional float height = 7 [default = 0];
|
|
|
bool has_height() const;
|
|
|
void clear_height();
|
|
|
static const int kHeightFieldNumber = 7;
|
|
|
float height() const;
|
|
|
void set_height(float value);
|
|
|
|
|
|
- // optional .message.Parkspace_status parkspace_status = 8;
|
|
|
+ // optional .message.Parkspace_status parkspace_status = 8 [default = eParkspace_status_unknow];
|
|
|
bool has_parkspace_status() const;
|
|
|
void clear_parkspace_status();
|
|
|
static const int kParkspaceStatusFieldNumber = 8;
|
|
|
::message::Parkspace_status parkspace_status() const;
|
|
|
void set_parkspace_status(::message::Parkspace_status value);
|
|
|
|
|
|
- // optional int32 block_id = 12;
|
|
|
+ // optional int32 block_id = 12 [default = 0];
|
|
|
bool has_block_id() const;
|
|
|
void clear_block_id();
|
|
|
static const int kBlockIdFieldNumber = 12;
|
|
|
::google::protobuf::int32 block_id() const;
|
|
|
void set_block_id(::google::protobuf::int32 value);
|
|
|
|
|
|
- // optional float path_estimate_time = 14;
|
|
|
+ // optional .message.Parkspace_path parkspace_path = 13 [default = UNKNOW_PATH];
|
|
|
+ bool has_parkspace_path() const;
|
|
|
+ void clear_parkspace_path();
|
|
|
+ static const int kParkspacePathFieldNumber = 13;
|
|
|
+ ::message::Parkspace_path parkspace_path() const;
|
|
|
+ void set_parkspace_path(::message::Parkspace_path value);
|
|
|
+
|
|
|
+ // optional float path_estimate_time = 14 [default = 0];
|
|
|
bool has_path_estimate_time() const;
|
|
|
void clear_path_estimate_time();
|
|
|
static const int kPathEstimateTimeFieldNumber = 14;
|
|
|
float path_estimate_time() const;
|
|
|
void set_path_estimate_time(float value);
|
|
|
|
|
|
- // optional .message.Parkspace_status parkspace_status_target = 15;
|
|
|
+ // optional .message.Parkspace_status parkspace_status_target = 15 [default = eParkspace_status_unknow];
|
|
|
bool has_parkspace_status_target() const;
|
|
|
void clear_parkspace_status_target();
|
|
|
static const int kParkspaceStatusTargetFieldNumber = 15;
|
|
|
::message::Parkspace_status parkspace_status_target() const;
|
|
|
void set_parkspace_status_target(::message::Parkspace_status value);
|
|
|
|
|
|
- // optional .message.Direction direction = 3;
|
|
|
- bool has_direction() const;
|
|
|
- void clear_direction();
|
|
|
- static const int kDirectionFieldNumber = 3;
|
|
|
- ::message::Direction direction() const;
|
|
|
- void set_direction(::message::Direction value);
|
|
|
-
|
|
|
- // optional .message.Parkspace_path parkspace_path = 13;
|
|
|
- bool has_parkspace_path() const;
|
|
|
- void clear_parkspace_path();
|
|
|
- static const int kParkspacePathFieldNumber = 13;
|
|
|
- ::message::Parkspace_path parkspace_path() const;
|
|
|
- void set_parkspace_path(::message::Parkspace_path value);
|
|
|
-
|
|
|
// @@protoc_insertion_point(class_scope:message.Parkspace_info)
|
|
|
private:
|
|
|
void set_has_parkspace_id();
|
|
@@ -1338,16 +1363,16 @@ class Parkspace_info : public ::google::protobuf::Message /* @@protoc_insertion_
|
|
|
::message::Car_info* car_info_;
|
|
|
::google::protobuf::int32 parkspace_id_;
|
|
|
::google::protobuf::int32 index_;
|
|
|
+ int direction_;
|
|
|
::google::protobuf::int32 floor_;
|
|
|
float length_;
|
|
|
float width_;
|
|
|
float height_;
|
|
|
int parkspace_status_;
|
|
|
::google::protobuf::int32 block_id_;
|
|
|
+ int parkspace_path_;
|
|
|
float path_estimate_time_;
|
|
|
int parkspace_status_target_;
|
|
|
- int direction_;
|
|
|
- int parkspace_path_;
|
|
|
friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
|
|
|
friend void ::protobuf_message_5fbase_2eproto::InitDefaultsParkspace_infoImpl();
|
|
|
};
|
|
@@ -1362,7 +1387,7 @@ class Parkspace_info : public ::google::protobuf::Message /* @@protoc_insertion_
|
|
|
#endif // __GNUC__
|
|
|
// Base_info
|
|
|
|
|
|
-// required .message.Message_type msg_type = 1;
|
|
|
+// required .message.Message_type msg_type = 1 [default = eBase_msg];
|
|
|
inline bool Base_info::has_msg_type() const {
|
|
|
return (_has_bits_[0] & 0x00000001u) != 0;
|
|
|
}
|
|
@@ -1387,7 +1412,7 @@ inline void Base_info::set_msg_type(::message::Message_type value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Base_info.msg_type)
|
|
|
}
|
|
|
|
|
|
-// optional int32 timeout_ms = 2;
|
|
|
+// optional int32 timeout_ms = 2 [default = 0];
|
|
|
inline bool Base_info::has_timeout_ms() const {
|
|
|
return (_has_bits_[0] & 0x00000002u) != 0;
|
|
|
}
|
|
@@ -1411,7 +1436,7 @@ inline void Base_info::set_timeout_ms(::google::protobuf::int32 value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Base_info.timeout_ms)
|
|
|
}
|
|
|
|
|
|
-// required .message.Communicator sender = 3;
|
|
|
+// required .message.Communicator sender = 3 [default = eEmpty];
|
|
|
inline bool Base_info::has_sender() const {
|
|
|
return (_has_bits_[0] & 0x00000004u) != 0;
|
|
|
}
|
|
@@ -1436,7 +1461,7 @@ inline void Base_info::set_sender(::message::Communicator value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Base_info.sender)
|
|
|
}
|
|
|
|
|
|
-// required .message.Communicator receiver = 4;
|
|
|
+// required .message.Communicator receiver = 4 [default = eEmpty];
|
|
|
inline bool Base_info::has_receiver() const {
|
|
|
return (_has_bits_[0] & 0x00000008u) != 0;
|
|
|
}
|
|
@@ -1523,7 +1548,7 @@ inline void Base_msg::set_allocated_base_info(::message::Base_info* base_info) {
|
|
|
|
|
|
// Error_manager
|
|
|
|
|
|
-// required int32 error_code = 1;
|
|
|
+// required int32 error_code = 1 [default = 0];
|
|
|
inline bool Error_manager::has_error_code() const {
|
|
|
return (_has_bits_[0] & 0x00000002u) != 0;
|
|
|
}
|
|
@@ -1547,7 +1572,7 @@ inline void Error_manager::set_error_code(::google::protobuf::int32 value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Error_manager.error_code)
|
|
|
}
|
|
|
|
|
|
-// optional .message.Error_level error_level = 2;
|
|
|
+// optional .message.Error_level error_level = 2 [default = NORMAL];
|
|
|
inline bool Error_manager::has_error_level() const {
|
|
|
return (_has_bits_[0] & 0x00000004u) != 0;
|
|
|
}
|
|
@@ -1572,7 +1597,7 @@ inline void Error_manager::set_error_level(::message::Error_level value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Error_manager.error_level)
|
|
|
}
|
|
|
|
|
|
-// optional string error_description = 3;
|
|
|
+// optional string error_description = 3 [default = ""];
|
|
|
inline bool Error_manager::has_error_description() const {
|
|
|
return (_has_bits_[0] & 0x00000001u) != 0;
|
|
|
}
|
|
@@ -1639,7 +1664,7 @@ inline void Error_manager::set_allocated_error_description(::std::string* error_
|
|
|
|
|
|
// Locate_information
|
|
|
|
|
|
-// optional float locate_x = 1;
|
|
|
+// optional float locate_x = 1 [default = 0];
|
|
|
inline bool Locate_information::has_locate_x() const {
|
|
|
return (_has_bits_[0] & 0x00000001u) != 0;
|
|
|
}
|
|
@@ -1663,7 +1688,7 @@ inline void Locate_information::set_locate_x(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_x)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_y = 2;
|
|
|
+// optional float locate_y = 2 [default = 0];
|
|
|
inline bool Locate_information::has_locate_y() const {
|
|
|
return (_has_bits_[0] & 0x00000002u) != 0;
|
|
|
}
|
|
@@ -1687,7 +1712,7 @@ inline void Locate_information::set_locate_y(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_y)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_angle = 3;
|
|
|
+// optional float locate_angle = 3 [default = 0];
|
|
|
inline bool Locate_information::has_locate_angle() const {
|
|
|
return (_has_bits_[0] & 0x00000004u) != 0;
|
|
|
}
|
|
@@ -1711,7 +1736,7 @@ inline void Locate_information::set_locate_angle(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_angle)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_length = 4;
|
|
|
+// optional float locate_length = 4 [default = 0];
|
|
|
inline bool Locate_information::has_locate_length() const {
|
|
|
return (_has_bits_[0] & 0x00000008u) != 0;
|
|
|
}
|
|
@@ -1735,7 +1760,7 @@ inline void Locate_information::set_locate_length(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_length)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_width = 5;
|
|
|
+// optional float locate_width = 5 [default = 0];
|
|
|
inline bool Locate_information::has_locate_width() const {
|
|
|
return (_has_bits_[0] & 0x00000010u) != 0;
|
|
|
}
|
|
@@ -1759,7 +1784,7 @@ inline void Locate_information::set_locate_width(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_width)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_height = 6;
|
|
|
+// optional float locate_height = 6 [default = 0];
|
|
|
inline bool Locate_information::has_locate_height() const {
|
|
|
return (_has_bits_[0] & 0x00000020u) != 0;
|
|
|
}
|
|
@@ -1783,7 +1808,7 @@ inline void Locate_information::set_locate_height(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_height)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_wheel_base = 7;
|
|
|
+// optional float locate_wheel_base = 7 [default = 0];
|
|
|
inline bool Locate_information::has_locate_wheel_base() const {
|
|
|
return (_has_bits_[0] & 0x00000040u) != 0;
|
|
|
}
|
|
@@ -1807,7 +1832,7 @@ inline void Locate_information::set_locate_wheel_base(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_wheel_base)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_wheel_width = 8;
|
|
|
+// optional float locate_wheel_width = 8 [default = 0];
|
|
|
inline bool Locate_information::has_locate_wheel_width() const {
|
|
|
return (_has_bits_[0] & 0x00000080u) != 0;
|
|
|
}
|
|
@@ -1831,7 +1856,7 @@ inline void Locate_information::set_locate_wheel_width(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_wheel_width)
|
|
|
}
|
|
|
|
|
|
-// optional bool locate_correct = 9;
|
|
|
+// optional bool locate_correct = 9 [default = false];
|
|
|
inline bool Locate_information::has_locate_correct() const {
|
|
|
return (_has_bits_[0] & 0x00000100u) != 0;
|
|
|
}
|
|
@@ -1855,7 +1880,7 @@ inline void Locate_information::set_locate_correct(bool value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Locate_information.locate_correct)
|
|
|
}
|
|
|
|
|
|
-// optional float locate_front_theta = 10;
|
|
|
+// optional float locate_front_theta = 10 [default = 0];
|
|
|
inline bool Locate_information::has_locate_front_theta() const {
|
|
|
return (_has_bits_[0] & 0x00000200u) != 0;
|
|
|
}
|
|
@@ -1883,7 +1908,7 @@ inline void Locate_information::set_locate_front_theta(float value) {
|
|
|
|
|
|
// Car_info
|
|
|
|
|
|
-// optional float car_length = 1;
|
|
|
+// optional float car_length = 1 [default = 0];
|
|
|
inline bool Car_info::has_car_length() const {
|
|
|
return (_has_bits_[0] & 0x00000002u) != 0;
|
|
|
}
|
|
@@ -1907,7 +1932,7 @@ inline void Car_info::set_car_length(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Car_info.car_length)
|
|
|
}
|
|
|
|
|
|
-// optional float car_width = 2;
|
|
|
+// optional float car_width = 2 [default = 0];
|
|
|
inline bool Car_info::has_car_width() const {
|
|
|
return (_has_bits_[0] & 0x00000004u) != 0;
|
|
|
}
|
|
@@ -1931,7 +1956,7 @@ inline void Car_info::set_car_width(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Car_info.car_width)
|
|
|
}
|
|
|
|
|
|
-// optional float car_height = 3;
|
|
|
+// optional float car_height = 3 [default = 0];
|
|
|
inline bool Car_info::has_car_height() const {
|
|
|
return (_has_bits_[0] & 0x00000008u) != 0;
|
|
|
}
|
|
@@ -1955,7 +1980,7 @@ inline void Car_info::set_car_height(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Car_info.car_height)
|
|
|
}
|
|
|
|
|
|
-// optional string license = 4;
|
|
|
+// optional string license = 4 [default = ""];
|
|
|
inline bool Car_info::has_license() const {
|
|
|
return (_has_bits_[0] & 0x00000001u) != 0;
|
|
|
}
|
|
@@ -2018,11 +2043,59 @@ inline void Car_info::set_allocated_license(::std::string* license) {
|
|
|
// @@protoc_insertion_point(field_set_allocated:message.Car_info.license)
|
|
|
}
|
|
|
|
|
|
+// optional float car_wheel_base = 5 [default = 0];
|
|
|
+inline bool Car_info::has_car_wheel_base() const {
|
|
|
+ return (_has_bits_[0] & 0x00000010u) != 0;
|
|
|
+}
|
|
|
+inline void Car_info::set_has_car_wheel_base() {
|
|
|
+ _has_bits_[0] |= 0x00000010u;
|
|
|
+}
|
|
|
+inline void Car_info::clear_has_car_wheel_base() {
|
|
|
+ _has_bits_[0] &= ~0x00000010u;
|
|
|
+}
|
|
|
+inline void Car_info::clear_car_wheel_base() {
|
|
|
+ car_wheel_base_ = 0;
|
|
|
+ clear_has_car_wheel_base();
|
|
|
+}
|
|
|
+inline float Car_info::car_wheel_base() const {
|
|
|
+ // @@protoc_insertion_point(field_get:message.Car_info.car_wheel_base)
|
|
|
+ return car_wheel_base_;
|
|
|
+}
|
|
|
+inline void Car_info::set_car_wheel_base(float value) {
|
|
|
+ set_has_car_wheel_base();
|
|
|
+ car_wheel_base_ = value;
|
|
|
+ // @@protoc_insertion_point(field_set:message.Car_info.car_wheel_base)
|
|
|
+}
|
|
|
+
|
|
|
+// optional float car_wheel_width = 6 [default = 0];
|
|
|
+inline bool Car_info::has_car_wheel_width() const {
|
|
|
+ return (_has_bits_[0] & 0x00000020u) != 0;
|
|
|
+}
|
|
|
+inline void Car_info::set_has_car_wheel_width() {
|
|
|
+ _has_bits_[0] |= 0x00000020u;
|
|
|
+}
|
|
|
+inline void Car_info::clear_has_car_wheel_width() {
|
|
|
+ _has_bits_[0] &= ~0x00000020u;
|
|
|
+}
|
|
|
+inline void Car_info::clear_car_wheel_width() {
|
|
|
+ car_wheel_width_ = 0;
|
|
|
+ clear_has_car_wheel_width();
|
|
|
+}
|
|
|
+inline float Car_info::car_wheel_width() const {
|
|
|
+ // @@protoc_insertion_point(field_get:message.Car_info.car_wheel_width)
|
|
|
+ return car_wheel_width_;
|
|
|
+}
|
|
|
+inline void Car_info::set_car_wheel_width(float value) {
|
|
|
+ set_has_car_wheel_width();
|
|
|
+ car_wheel_width_ = value;
|
|
|
+ // @@protoc_insertion_point(field_set:message.Car_info.car_wheel_width)
|
|
|
+}
|
|
|
+
|
|
|
// -------------------------------------------------------------------
|
|
|
|
|
|
// Parkspace_info
|
|
|
|
|
|
-// optional int32 parkspace_id = 1;
|
|
|
+// optional int32 parkspace_id = 1 [default = 0];
|
|
|
inline bool Parkspace_info::has_parkspace_id() const {
|
|
|
return (_has_bits_[0] & 0x00000008u) != 0;
|
|
|
}
|
|
@@ -2046,7 +2119,7 @@ inline void Parkspace_info::set_parkspace_id(::google::protobuf::int32 value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.parkspace_id)
|
|
|
}
|
|
|
|
|
|
-// optional int32 index = 2;
|
|
|
+// optional int32 index = 2 [default = 0];
|
|
|
inline bool Parkspace_info::has_index() const {
|
|
|
return (_has_bits_[0] & 0x00000010u) != 0;
|
|
|
}
|
|
@@ -2070,18 +2143,18 @@ inline void Parkspace_info::set_index(::google::protobuf::int32 value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.index)
|
|
|
}
|
|
|
|
|
|
-// optional .message.Direction direction = 3;
|
|
|
+// optional .message.Direction direction = 3 [default = eDirection_unknow];
|
|
|
inline bool Parkspace_info::has_direction() const {
|
|
|
- return (_has_bits_[0] & 0x00002000u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000020u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_direction() {
|
|
|
- _has_bits_[0] |= 0x00002000u;
|
|
|
+ _has_bits_[0] |= 0x00000020u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_direction() {
|
|
|
- _has_bits_[0] &= ~0x00002000u;
|
|
|
+ _has_bits_[0] &= ~0x00000020u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_direction() {
|
|
|
- direction_ = 1;
|
|
|
+ direction_ = 0;
|
|
|
clear_has_direction();
|
|
|
}
|
|
|
inline ::message::Direction Parkspace_info::direction() const {
|
|
@@ -2095,15 +2168,15 @@ inline void Parkspace_info::set_direction(::message::Direction value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.direction)
|
|
|
}
|
|
|
|
|
|
-// optional int32 floor = 4;
|
|
|
+// optional int32 floor = 4 [default = 0];
|
|
|
inline bool Parkspace_info::has_floor() const {
|
|
|
- return (_has_bits_[0] & 0x00000020u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000040u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_floor() {
|
|
|
- _has_bits_[0] |= 0x00000020u;
|
|
|
+ _has_bits_[0] |= 0x00000040u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_floor() {
|
|
|
- _has_bits_[0] &= ~0x00000020u;
|
|
|
+ _has_bits_[0] &= ~0x00000040u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_floor() {
|
|
|
floor_ = 0;
|
|
@@ -2119,15 +2192,15 @@ inline void Parkspace_info::set_floor(::google::protobuf::int32 value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.floor)
|
|
|
}
|
|
|
|
|
|
-// optional float length = 5;
|
|
|
+// optional float length = 5 [default = 0];
|
|
|
inline bool Parkspace_info::has_length() const {
|
|
|
- return (_has_bits_[0] & 0x00000040u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000080u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_length() {
|
|
|
- _has_bits_[0] |= 0x00000040u;
|
|
|
+ _has_bits_[0] |= 0x00000080u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_length() {
|
|
|
- _has_bits_[0] &= ~0x00000040u;
|
|
|
+ _has_bits_[0] &= ~0x00000080u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_length() {
|
|
|
length_ = 0;
|
|
@@ -2143,15 +2216,15 @@ inline void Parkspace_info::set_length(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.length)
|
|
|
}
|
|
|
|
|
|
-// optional float width = 6;
|
|
|
+// optional float width = 6 [default = 0];
|
|
|
inline bool Parkspace_info::has_width() const {
|
|
|
- return (_has_bits_[0] & 0x00000080u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000100u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_width() {
|
|
|
- _has_bits_[0] |= 0x00000080u;
|
|
|
+ _has_bits_[0] |= 0x00000100u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_width() {
|
|
|
- _has_bits_[0] &= ~0x00000080u;
|
|
|
+ _has_bits_[0] &= ~0x00000100u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_width() {
|
|
|
width_ = 0;
|
|
@@ -2167,15 +2240,15 @@ inline void Parkspace_info::set_width(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.width)
|
|
|
}
|
|
|
|
|
|
-// optional float height = 7;
|
|
|
+// optional float height = 7 [default = 0];
|
|
|
inline bool Parkspace_info::has_height() const {
|
|
|
- return (_has_bits_[0] & 0x00000100u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000200u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_height() {
|
|
|
- _has_bits_[0] |= 0x00000100u;
|
|
|
+ _has_bits_[0] |= 0x00000200u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_height() {
|
|
|
- _has_bits_[0] &= ~0x00000100u;
|
|
|
+ _has_bits_[0] &= ~0x00000200u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_height() {
|
|
|
height_ = 0;
|
|
@@ -2191,15 +2264,15 @@ inline void Parkspace_info::set_height(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.height)
|
|
|
}
|
|
|
|
|
|
-// optional .message.Parkspace_status parkspace_status = 8;
|
|
|
+// optional .message.Parkspace_status parkspace_status = 8 [default = eParkspace_status_unknow];
|
|
|
inline bool Parkspace_info::has_parkspace_status() const {
|
|
|
- return (_has_bits_[0] & 0x00000200u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000400u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_parkspace_status() {
|
|
|
- _has_bits_[0] |= 0x00000200u;
|
|
|
+ _has_bits_[0] |= 0x00000400u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_parkspace_status() {
|
|
|
- _has_bits_[0] &= ~0x00000200u;
|
|
|
+ _has_bits_[0] &= ~0x00000400u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_parkspace_status() {
|
|
|
parkspace_status_ = 0;
|
|
@@ -2270,7 +2343,7 @@ inline void Parkspace_info::set_allocated_car_info(::message::Car_info* car_info
|
|
|
// @@protoc_insertion_point(field_set_allocated:message.Parkspace_info.car_info)
|
|
|
}
|
|
|
|
|
|
-// optional string entry_time = 10;
|
|
|
+// optional string entry_time = 10 [default = ""];
|
|
|
inline bool Parkspace_info::has_entry_time() const {
|
|
|
return (_has_bits_[0] & 0x00000001u) != 0;
|
|
|
}
|
|
@@ -2333,7 +2406,7 @@ inline void Parkspace_info::set_allocated_entry_time(::std::string* entry_time)
|
|
|
// @@protoc_insertion_point(field_set_allocated:message.Parkspace_info.entry_time)
|
|
|
}
|
|
|
|
|
|
-// optional string leave_time = 11;
|
|
|
+// optional string leave_time = 11 [default = ""];
|
|
|
inline bool Parkspace_info::has_leave_time() const {
|
|
|
return (_has_bits_[0] & 0x00000002u) != 0;
|
|
|
}
|
|
@@ -2396,15 +2469,15 @@ inline void Parkspace_info::set_allocated_leave_time(::std::string* leave_time)
|
|
|
// @@protoc_insertion_point(field_set_allocated:message.Parkspace_info.leave_time)
|
|
|
}
|
|
|
|
|
|
-// optional int32 block_id = 12;
|
|
|
+// optional int32 block_id = 12 [default = 0];
|
|
|
inline bool Parkspace_info::has_block_id() const {
|
|
|
- return (_has_bits_[0] & 0x00000400u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00000800u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_block_id() {
|
|
|
- _has_bits_[0] |= 0x00000400u;
|
|
|
+ _has_bits_[0] |= 0x00000800u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_block_id() {
|
|
|
- _has_bits_[0] &= ~0x00000400u;
|
|
|
+ _has_bits_[0] &= ~0x00000800u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_block_id() {
|
|
|
block_id_ = 0;
|
|
@@ -2420,18 +2493,18 @@ inline void Parkspace_info::set_block_id(::google::protobuf::int32 value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.block_id)
|
|
|
}
|
|
|
|
|
|
-// optional .message.Parkspace_path parkspace_path = 13;
|
|
|
+// optional .message.Parkspace_path parkspace_path = 13 [default = UNKNOW_PATH];
|
|
|
inline bool Parkspace_info::has_parkspace_path() const {
|
|
|
- return (_has_bits_[0] & 0x00004000u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00001000u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_parkspace_path() {
|
|
|
- _has_bits_[0] |= 0x00004000u;
|
|
|
+ _has_bits_[0] |= 0x00001000u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_parkspace_path() {
|
|
|
- _has_bits_[0] &= ~0x00004000u;
|
|
|
+ _has_bits_[0] &= ~0x00001000u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_parkspace_path() {
|
|
|
- parkspace_path_ = 1;
|
|
|
+ parkspace_path_ = 0;
|
|
|
clear_has_parkspace_path();
|
|
|
}
|
|
|
inline ::message::Parkspace_path Parkspace_info::parkspace_path() const {
|
|
@@ -2445,15 +2518,15 @@ inline void Parkspace_info::set_parkspace_path(::message::Parkspace_path value)
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.parkspace_path)
|
|
|
}
|
|
|
|
|
|
-// optional float path_estimate_time = 14;
|
|
|
+// optional float path_estimate_time = 14 [default = 0];
|
|
|
inline bool Parkspace_info::has_path_estimate_time() const {
|
|
|
- return (_has_bits_[0] & 0x00000800u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00002000u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_path_estimate_time() {
|
|
|
- _has_bits_[0] |= 0x00000800u;
|
|
|
+ _has_bits_[0] |= 0x00002000u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_path_estimate_time() {
|
|
|
- _has_bits_[0] &= ~0x00000800u;
|
|
|
+ _has_bits_[0] &= ~0x00002000u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_path_estimate_time() {
|
|
|
path_estimate_time_ = 0;
|
|
@@ -2469,15 +2542,15 @@ inline void Parkspace_info::set_path_estimate_time(float value) {
|
|
|
// @@protoc_insertion_point(field_set:message.Parkspace_info.path_estimate_time)
|
|
|
}
|
|
|
|
|
|
-// optional .message.Parkspace_status parkspace_status_target = 15;
|
|
|
+// optional .message.Parkspace_status parkspace_status_target = 15 [default = eParkspace_status_unknow];
|
|
|
inline bool Parkspace_info::has_parkspace_status_target() const {
|
|
|
- return (_has_bits_[0] & 0x00001000u) != 0;
|
|
|
+ return (_has_bits_[0] & 0x00004000u) != 0;
|
|
|
}
|
|
|
inline void Parkspace_info::set_has_parkspace_status_target() {
|
|
|
- _has_bits_[0] |= 0x00001000u;
|
|
|
+ _has_bits_[0] |= 0x00004000u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_has_parkspace_status_target() {
|
|
|
- _has_bits_[0] &= ~0x00001000u;
|
|
|
+ _has_bits_[0] &= ~0x00004000u;
|
|
|
}
|
|
|
inline void Parkspace_info::clear_parkspace_status_target() {
|
|
|
parkspace_status_target_ = 0;
|