← Back to team overview

nrtb-core team mailing list archive

[Branch ~fpstovall/nrtb/cpp_common] Rev 39: Added a package statement to each proto file to set the C++ namespace and Java package the result...

 

------------------------------------------------------------
revno: 39
committer: fpstovall@xxxxxxxxx
branch nick: dev
timestamp: Sun 2011-07-24 13:15:15 -0400
message:
  Added a package statement to each proto file to set the C++ namespace and Java package the resulting objects will belong to.
modified:
  GPB_proto/ack_nak.proto
  GPB_proto/physics_common.proto
  GPB_proto/sim_obj_tq_update.proto
  GPB_proto/sim_to_db_wrapper.proto


--
lp:~fpstovall/nrtb/cpp_common
https://code.launchpad.net/~fpstovall/nrtb/cpp_common

Your team NRTB Core is subscribed to branch lp:~fpstovall/nrtb/cpp_common.
To unsubscribe from this branch go to https://code.launchpad.net/~fpstovall/nrtb/cpp_common/+edit-subscription
=== modified file 'GPB_proto/ack_nak.proto'
--- GPB_proto/ack_nak.proto	2011-07-22 02:58:56 +0000
+++ GPB_proto/ack_nak.proto	2011-07-24 17:15:15 +0000
@@ -9,6 +9,9 @@
 // 	in a channel wrapper message.
 
 // return on of these to ack the recept of each error free message.
+
+package nrtb_msg;
+
 message message_ack {
 	required uint32 msg_uid = 1;
 }

=== modified file 'GPB_proto/physics_common.proto'
--- GPB_proto/physics_common.proto	2011-07-22 02:58:56 +0000
+++ GPB_proto/physics_common.proto	2011-07-24 17:15:15 +0000
@@ -11,6 +11,8 @@
 //  meters for distance, meters/sec for velocity, radians for attitude,
 //  and radians/sec for rotational velocity.
 
+package nrtb_msg;
+
 message triplet {
 	required double x = 1;
 	required double y = 2;

=== modified file 'GPB_proto/sim_obj_tq_update.proto'
--- GPB_proto/sim_obj_tq_update.proto	2011-07-22 02:58:56 +0000
+++ GPB_proto/sim_obj_tq_update.proto	2011-07-24 17:15:15 +0000
@@ -8,6 +8,8 @@
 // Note: these are never sent bare.. they are always payloads 
 // 	in a channel wrapper message.
 
+package nrtb_msg;
+
 import "physics_common.proto";
 
 // This message contains all the information required to report the

=== modified file 'GPB_proto/sim_to_db_wrapper.proto'
--- GPB_proto/sim_to_db_wrapper.proto	2011-07-22 02:58:56 +0000
+++ GPB_proto/sim_to_db_wrapper.proto	2011-07-24 17:15:15 +0000
@@ -7,6 +7,8 @@
 // Note: The message defined here is a "channel wrapper", a container for 
 //  all messages from the simulation engine to the data broker.
 
+package nrtb_msg;
+
 import "ack_nak.proto";
 import "sim_obj_tq_update.proto";