diff options
author | fcolin | 2007-02-01 13:06:41 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:06:41 +0000 |
commit | 4f558e7603406f501857a590355e51d8e43b2361 (patch) | |
tree | b78f41cf6951a83c115a34a1292c46baee0b3770 /IvyAudioMon/ParseCmdLine.cpp | |
parent | 4ef8a85b4cac02fc903983047e31903431afbae7 (diff) | |
download | ivy-cplusplus-4f558e7603406f501857a590355e51d8e43b2361.zip ivy-cplusplus-4f558e7603406f501857a590355e51d8e43b2361.tar.gz ivy-cplusplus-4f558e7603406f501857a590355e51d8e43b2361.tar.bz2 ivy-cplusplus-4f558e7603406f501857a590355e51d8e43b2361.tar.xz |
Utilisateur : Fcolin Date : 28/09/04 Heure : 15:06 Archivé dans $/Bus/IvyAudioMon Commentaire: (vss 2)
Diffstat (limited to 'IvyAudioMon/ParseCmdLine.cpp')
-rw-r--r-- | IvyAudioMon/ParseCmdLine.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/IvyAudioMon/ParseCmdLine.cpp b/IvyAudioMon/ParseCmdLine.cpp index fc6a1d8..59a27ce 100644 --- a/IvyAudioMon/ParseCmdLine.cpp +++ b/IvyAudioMon/ParseCmdLine.cpp @@ -20,8 +20,8 @@ ParseCmdLine::ParseCmdLine() {
m_start = TRUE;
m_busNumber = "";
- m_prefix = "IvyFileMon ";
- m_directory = "c:\\anoto_log\\strokes";
+ m_prefix = "IvyAudioMon ";
+ m_seuil = 15.0;
m_extent = "*.txt";
}
@@ -48,8 +48,8 @@ void ParseCmdLine::ParseParamFlag(LPCTSTR pszParam) m_start = TRUE;
else if (lstrcmpi(pszParam, TEXT("bus")) == 0)
m_shellCommand = BusNumber;
- else if (lstrcmpi(pszParam, TEXT("directory")) == 0)
- m_shellCommand = Directory;
+ else if (lstrcmpi(pszParam, TEXT("seuil")) == 0)
+ m_shellCommand = Seuil;
else if (lstrcmpi(pszParam, TEXT("prefix")) == 0)
m_shellCommand = Prefix;
else if (lstrcmpi(pszParam, TEXT("extent")) == 0)
@@ -63,8 +63,8 @@ void ParseCmdLine::ParseParamNotFlag(LPCTSTR pszParam) case BusNumber:
m_busNumber = pszParam;
break;
- case Directory:
- m_directory = pszParam;
+ case Seuil:
+ m_seuil = atof(pszParam);
break;
case Prefix:
m_prefix = pszParam;
|