DXCommandLineInfo.cpp
上传用户:lijia5631
上传日期:2008-11-10
资源大小:1214k
文件大小:2k
源码类别:

视频捕捉/采集

开发平台:

MultiPlatform

  1. /**   * HandVu - a library for computer vision-based hand gesture   * recognition.   * Copyright (C) 2004 Mathias Kolsch, matz@cs.ucsb.edu   *   * This program is free software; you can redistribute it and/or   * modify it under the terms of the GNU General Public License   * as published by the Free Software Foundation; either version 2   * of the License, or (at your option) any later version.   *   * This program is distributed in the hope that it will be useful,   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   * GNU General Public License for more details.   *   * You should have received a copy of the GNU General Public License   * along with this program; if not, write to the Free Software   * Foundation, Inc., 59 Temple Place - Suite 330,    * Boston, MA  02111-1307, USA.   *   * $Id: DXCommandLineInfo.cpp,v 1.4 2004/11/24 08:38:40 matz Exp $ **/
  2. #include "stdafx.h"
  3. #include "DXCommandLineInfo.h"
  4. CDXCommandLineInfo::CDXCommandLineInfo()
  5. {
  6.   // $IT_DATA environmet variable, NULL if not set
  7.   //const char *it_data = getenv("IT_DATA");
  8.   //m_conductor_filename = string(it_data)+"\hmd.conductor";
  9.   //m_conductor_filename = string(it_data)+"\intheworks.conductor";
  10.   m_conductor_filename = "default.conductor";
  11.   m_log_filename = "";
  12.   m_verbosity = 0;
  13.   m_print_version = false;
  14. }
  15. void CDXCommandLineInfo::ParseParam(const char* pszParam, BOOL bFlag, BOOL bLast)
  16. {
  17.   if (bFlag && pszParam[0]=='c' && pszParam[1]=='=') {
  18.     m_conductor_filename = string(&pszParam[2]);
  19.   } else if (bFlag && pszParam[0]=='l' && pszParam[1]=='=') {
  20.     m_log_filename = string(&pszParam[2]);
  21.   } else if (bFlag && strcmp(pszParam, "version")==0) {
  22.     m_print_version = true;
  23.   } else if (bFlag && pszParam[0]=='v' && pszParam[1]=='=') {
  24.     m_verbosity = atoi(&pszParam[2]);
  25.   } else {
  26.     CCommandLineInfo::ParseParam(pszParam, bFlag, bLast);
  27.   }
  28. }
  29. const string& CDXCommandLineInfo::GetConductor() const
  30. {
  31.   return m_conductor_filename;
  32. }
  33. const string& CDXCommandLineInfo::GetLogFilename() const
  34. {
  35.   return m_log_filename;
  36. }