diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-27 20:43:57 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-06-27 20:43:57 -0500 |
commit | 8392c611054a5bb058cd778163a7aa4ef8311c94 (patch) | |
tree | 5703e9d3ff12474fe474d37bb7c2532418c5b8aa /lib/libtqtrla/src/tqtrla.cpp | |
parent | e3bfbdc4e464d057be5095bb5bbd3240beab8ec6 (diff) | |
download | ulab-8392c611054a5bb058cd778163a7aa4ef8311c94.tar.gz ulab-8392c611054a5bb058cd778163a7aa4ef8311c94.zip |
Fix a number of problems
Diffstat (limited to 'lib/libtqtrla/src/tqtrla.cpp')
-rw-r--r-- | lib/libtqtrla/src/tqtrla.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libtqtrla/src/tqtrla.cpp b/lib/libtqtrla/src/tqtrla.cpp index 71508dd..6daded3 100644 --- a/lib/libtqtrla/src/tqtrla.cpp +++ b/lib/libtqtrla/src/tqtrla.cpp @@ -44,6 +44,8 @@ TQDataStream &operator<<( TQDataStream &s, const ServiceType &st ) s << st.type; s << st.name; s << st.description; + s << st.clientLibrary; + s << st.version; return s; } @@ -60,6 +62,8 @@ TQDataStream &operator>>( TQDataStream &s, ServiceType &st ) s >> st.type; s >> st.name; s >> st.description; + s >> st.clientLibrary; + s >> st.version; return s; } |