diff options
-rw-r--r-- | Bus/Horloge/HorlogeDlg.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Bus/Horloge/HorlogeDlg.h b/Bus/Horloge/HorlogeDlg.h index 5550961..93cb915 100644 --- a/Bus/Horloge/HorlogeDlg.h +++ b/Bus/Horloge/HorlogeDlg.h @@ -9,6 +9,7 @@ #endif // _MSC_VER > 1000
#include "Ivy.h"
+#include "afxcmn.h"
/////////////////////////////////////////////////////////////////////////////
// CHorlogeDlg dialog
@@ -40,8 +41,9 @@ public: protected:
HICON m_hIcon;
Ivy *bus;
- float rate;
- SYSTEMTIME time;
+ double rate;
+ SYSTEMTIME start_time;
+ SYSTEMTIME current_time;
void IvyClockEvent( IvyApplication *app, int argc, const char **argv );
void IvyRejeuReady( IvyApplication *app, int argc, const char **argv );
void IvyFileReadEvent( IvyApplication *app, int argc, const char **argv );
@@ -70,6 +72,8 @@ protected: afx_msg void OnDblclkApplist();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
+public:
+ CProgressCtrl file_progress;
};
//{{AFX_INSERT_LOCATION}}
|