diff options
Diffstat (limited to 'syncRouteCommand.cpp')
-rw-r--r-- | syncRouteCommand.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/syncRouteCommand.cpp b/syncRouteCommand.cpp new file mode 100644 index 0000000..7ba6a18 --- /dev/null +++ b/syncRouteCommand.cpp @@ -0,0 +1,15 @@ +#include "syncRouteCommand.h" + +SyncRouteCommand::SyncRouteCommand() +{ +} + +SyncRouteCommand::SyncRouteCommand( u_int16_t mux ) +:mux_(mux) +{ +} + +u_int16_t SyncRouteCommand::getMux() const +{ + return mux_; +} |