Changeset 2929 in ntrip for trunk/BNC/combination
- Timestamp:
- Jan 29, 2011, 2:02:10 PM (14 years ago)
- Location:
- trunk/BNC/combination
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/combination/bnccomb.cpp
r2928 r2929 46 46 47 47 _caster = new cmbCaster(); 48 49 connect(_caster, SIGNAL(error(const QByteArray)), 50 this, SLOT(slotError(const QByteArray))); 51 52 connect(_caster, SIGNAL(newMessage(const QByteArray)), 53 this, SLOT(slotMessage(const QByteArray))); 48 54 } 49 55 … … 222 228 } 223 229 230 // Write an Error Message 231 //////////////////////////////////////////////////////////////////////////// 232 void bncComb::slotError(const QByteArray msg) { 233 cout << msg.data() << endl; 234 } 235 236 // Write a Message 237 //////////////////////////////////////////////////////////////////////////// 238 void bncComb::slotMessage(const QByteArray msg) { 239 cout << msg.data() << endl; 240 } 241 224 242 // Process Epochs 225 243 //////////////////////////////////////////////////////////////////////////// -
trunk/BNC/combination/bnccomb.h
r2928 r2929 18 18 signals: 19 19 void newMessage(QByteArray msg, bool showOnScreen); 20 21 private slots: 22 void slotMessage(const QByteArray msg); 23 void slotError(const QByteArray msg); 20 24 21 25 private:
Note:
See TracChangeset
for help on using the changeset viewer.