diff options
author | fcolin | 2007-02-01 12:52:37 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 12:52:37 +0000 |
commit | 98daeb3da6a3acf435073943aca721aa743c8479 (patch) | |
tree | b61508376916a2de998cdae4172a9c43183185f3 | |
parent | ed71499daa683ba4407a9096d2f94b05cad9f873 (diff) | |
download | ivy-cplusplus-98daeb3da6a3acf435073943aca721aa743c8479.zip ivy-cplusplus-98daeb3da6a3acf435073943aca721aa743c8479.tar.gz ivy-cplusplus-98daeb3da6a3acf435073943aca721aa743c8479.tar.bz2 ivy-cplusplus-98daeb3da6a3acf435073943aca721aa743c8479.tar.xz |
Utilisateur : Fcolin Date : 25/10/01 Heure : 11:44 Créé (vss 1)
-rw-r--r-- | Bus/Horloge/HorlogeParseCmdLine.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Bus/Horloge/HorlogeParseCmdLine.h b/Bus/Horloge/HorlogeParseCmdLine.h new file mode 100644 index 0000000..3ececad --- /dev/null +++ b/Bus/Horloge/HorlogeParseCmdLine.h @@ -0,0 +1,31 @@ +// TestParseCmdLine.h: interface for the TestParseCmdLine class.
+//
+//////////////////////////////////////////////////////////////////////
+
+#if !defined(AFX_FXParseCMDLINE_H__20232B92_AB99_11D2_898F_00A0245B298A__INCLUDED_)
+#define AFX_FXParseCMDLINE_H__20232B92_AB99_11D2_898F_00A0245B298A__INCLUDED_
+
+#if _MSC_VER > 1000
+#pragma once
+#endif // _MSC_VER > 1000
+
+class HorlogeParseCmdLine : public CCommandLineInfo
+{
+public:
+
+ BOOL m_start;
+ CString m_busNumber;
+ virtual void ParseParam( LPCTSTR lpszParam, BOOL bFlag, BOOL bLast );
+ HorlogeParseCmdLine();
+ virtual ~HorlogeParseCmdLine();
+ enum {
+ BusNumber,
+ Start,
+ }m_shellCommand;
+
+protected:
+ void ParseParamNotFlag(LPCTSTR pszParam);
+ void ParseParamFlag(LPCTSTR pszParam);
+};
+
+#endif // !defined(AFX_FXParseCMDLINE_H__20232B92_AB99_11D2_898F_00A0245B298A__INCLUDED_)
|