New packet types implemented for timeout system - unused yet.

This commit is contained in:
lotodore
2008-03-04 14:52:29 +00:00
parent c0e45e9f8e
commit 188f7e171f
6 changed files with 213 additions and 12 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ public slots:
void stopTimeout();
void setMySession ( boost::shared_ptr<Session> theValue ) { mySession = theValue; }
void setMsgID ( int theValue ) { msgID = theValue; }
void setMsgID ( NetTimeoutReason theValue ) { msgID = theValue; }
void setTimeoutDuration ( int theValue ) { timeoutDuration = theValue; }
private:
@@ -46,7 +46,7 @@ private:
QTimer *timeOutTimer;
QPushButton *okButton;
boost::shared_ptr<Session> mySession;
int msgID;
NetTimeoutReason msgID;
int timeoutDuration;
boost::timers::portable::microsec_timer realTimer;
};