diff options
author | fcolin | 2007-02-01 13:11:37 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:11:37 +0000 |
commit | 338347c68177e92295aaaa68c6f933088a537b83 (patch) | |
tree | 2c19a6b317a76f3cb3f6d2a091db8e74a4d46ce8 /Bus/IvyProbe | |
parent | b9dc9f74943cce63d13aa8d69f77d67e84ef0394 (diff) | |
download | ivy-cplusplus-338347c68177e92295aaaa68c6f933088a537b83.zip ivy-cplusplus-338347c68177e92295aaaa68c6f933088a537b83.tar.gz ivy-cplusplus-338347c68177e92295aaaa68c6f933088a537b83.tar.bz2 ivy-cplusplus-338347c68177e92295aaaa68c6f933088a537b83.tar.xz |
Utilisateur : Fcolin Date : 13/01/03 Heure : 15:28 Archivé dans $/Bus/IvyProbe Commentaire: (vss 14)
Diffstat (limited to 'Bus/IvyProbe')
-rw-r--r-- | Bus/IvyProbe/IvyProbeDlg.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Bus/IvyProbe/IvyProbeDlg.h b/Bus/IvyProbe/IvyProbeDlg.h index bf59474..0823c38 100644 --- a/Bus/IvyProbe/IvyProbeDlg.h +++ b/Bus/IvyProbe/IvyProbeDlg.h @@ -9,6 +9,13 @@ #endif // _MSC_VER >= 1000
#include "Ivy.h"
+#ifdef USE_ETS
+#include "ETSLayout.h"
+#define MyDialog ETSLayoutDialog
+#else
+#define MyDialog CDialog
+#endif
+#include "HistoryEdit.h"
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
@@ -44,8 +51,9 @@ class CTestDlg : public MyDialog, public IvyApplicationCallback public:
CTestDlg(CWnd* pParent = NULL); // standard constructor
+#ifdef USE_ETS
DECLARE_LAYOUT();
-
+#endif
CHistoryEdit m_text;
// Dialog Data
//{{AFX_DATA(CTestDlg)
|