summaryrefslogtreecommitdiff
path: root/IvyAudioMon
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:06:44 +0000
committerfcolin2007-02-01 13:06:44 +0000
commit49fddb5226f5660bba654509c70135a98b5785ee (patch)
treec5e388f98981daf029c13940abbc7755ed5cccfc /IvyAudioMon
parent4f558e7603406f501857a590355e51d8e43b2361 (diff)
downloadivy-cplusplus-49fddb5226f5660bba654509c70135a98b5785ee.zip
ivy-cplusplus-49fddb5226f5660bba654509c70135a98b5785ee.tar.gz
ivy-cplusplus-49fddb5226f5660bba654509c70135a98b5785ee.tar.bz2
ivy-cplusplus-49fddb5226f5660bba654509c70135a98b5785ee.tar.xz
Utilisateur : Fcolin Date : 10/02/04 Heure : 17:06 Créé Commentaire: (vss 1)
Diffstat (limited to 'IvyAudioMon')
-rw-r--r--IvyAudioMon/ParseCmdLine.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/IvyAudioMon/ParseCmdLine.h b/IvyAudioMon/ParseCmdLine.h
new file mode 100644
index 0000000..3b9a272
--- /dev/null
+++ b/IvyAudioMon/ParseCmdLine.h
@@ -0,0 +1,37 @@
+// 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 ParseCmdLine : public CCommandLineInfo
+{
+public:
+
+ BOOL m_start;
+ CString m_busNumber;
+ CString m_directory;
+ CString m_extent;
+ CString m_prefix;
+ virtual void ParseParam( LPCTSTR lpszParam, BOOL bFlag, BOOL bLast );
+ ParseCmdLine();
+ virtual ~ParseCmdLine();
+ enum {
+ BusNumber,
+ Start,
+ Directory,
+ Extent,
+ Prefix
+ }m_shellCommand;
+
+protected:
+ void ParseParamNotFlag(LPCTSTR pszParam);
+ void ParseParamFlag(LPCTSTR pszParam);
+};
+
+#endif // !defined(AFX_FXParseCMDLINE_H__20232B92_AB99_11D2_898F_00A0245B298A__INCLUDED_)