00001 #pragma once 00002 00003 #include "HLabConfig.h" 00004 00005 class CHLabDTWRecogConfig : 00006 public CHLabConfig 00007 { 00008 const char* m_pszInputFile; 00009 float m_fPruneTH; 00010 00011 static arg_t m_defn[]; 00012 public: 00013 CHLabDTWRecogConfig(void); 00014 virtual ~CHLabDTWRecogConfig(void); 00015 00016 int ParseCommandLine(int argc, char** argv); 00017 00018 inline const char* GetInputFile() 00019 { 00020 return m_pszInputFile; 00021 } 00022 00023 inline float GetPruneTH() 00024 { 00025 return m_fPruneTH; 00026 } 00027 00028 00029 };