Commit 67dee2737c5ed31595be2f918431d40f8cfbe195
1 parent
4b2d9eb0
add missing includes and fix one class initialization
Showing
3 changed files
with
6 additions
and
1 deletions
@@ -8,6 +8,8 @@ nobase_include_HEADERS = trcomm.h \ | @@ -8,6 +8,8 @@ nobase_include_HEADERS = trcomm.h \ | ||
8 | tr/io_handler.h \ | 8 | tr/io_handler.h \ |
9 | tr/proto_message.h \ | 9 | tr/proto_message.h \ |
10 | tr/protocol.h \ | 10 | tr/protocol.h \ |
11 | + tr/protocol/raw.h \ | ||
12 | + tr/protocol/message_raw.h \ | ||
11 | tr/protocol_handler.h \ | 13 | tr/protocol_handler.h \ |
12 | tr/interface/comm_end_point.h \ | 14 | tr/interface/comm_end_point.h \ |
13 | tr/interface/comm_manager.h \ | 15 | tr/interface/comm_manager.h \ |
@@ -10,6 +10,8 @@ | @@ -10,6 +10,8 @@ | ||
10 | #include "tr/io_handler.h" | 10 | #include "tr/io_handler.h" |
11 | #include "tr/proto_message.h" | 11 | #include "tr/proto_message.h" |
12 | #include "tr/protocol.h" | 12 | #include "tr/protocol.h" |
13 | +#include "tr/protocol/raw.h" | ||
14 | +#include "tr/protocol/message_raw.h" | ||
13 | #include "tr/protocol_handler.h" | 15 | #include "tr/protocol_handler.h" |
14 | #include "tr/interface/comm_end_point.h" | 16 | #include "tr/interface/comm_end_point.h" |
15 | #include "tr/interface/comm_manager.h" | 17 | #include "tr/interface/comm_manager.h" |
@@ -179,6 +179,7 @@ TR_CREATE_CLASS( | @@ -179,6 +179,7 @@ TR_CREATE_CLASS( | ||
179 | TR_CommManagerPoll, | 179 | TR_CommManagerPoll, |
180 | TR_CommManager, | 180 | TR_CommManager, |
181 | TR_commManagerPollCvInit, | 181 | TR_commManagerPollCvInit, |
182 | - TR_IF(TR_Class)); | 182 | + TR_IF(TR_Class), |
183 | + TR_IF(TR_CommManager)); | ||
183 | 184 | ||
184 | // vim: set ts=4 sw=4: | 185 | // vim: set ts=4 sw=4: |
Please
register
or
login
to post a comment