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

视频捕捉/采集

开发平台:

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: stdafx.h,v 1.2 2004/10/19 01:44:06 matz Exp $ **/ #pragma once
  2. #ifndef VC_EXTRALEAN
  3. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  4. #endif
  5. // Modify the following defines if you have to target a platform prior to the ones specified below.
  6. // Refer to MSDN for the latest info on corresponding values for different platforms.
  7. #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
  8. #define WINVER 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  9. #endif
  10. #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
  11. #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
  12. #endif
  13. #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
  14. #define _WIN32_WINDOWS 0x0501 // Change this to the appropriate value to target Windows Me or later.
  15. #endif
  16. #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
  17. #define _WIN32_IE 0x0501 // Change this to the appropriate value to target IE 5.0 or later.
  18. #endif
  19. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
  20. // turns off MFC's hiding of some common and often safely ignored warning messages
  21. #define _AFX_ALL_WARNINGS
  22. #include <afxwin.h>         // MFC core and standard components
  23. #include <afxext.h>         // MFC extensions
  24. #include <afxdisp.h>        // MFC Automation classes
  25. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  26. #ifndef _AFX_NO_AFXCMN_SUPPORT
  27. #include <afxcmn.h> // MFC support for Windows Common Controls
  28. #endif // _AFX_NO_AFXCMN_SUPPORT
  29. #include <streams.h>
  30. #include <string>
  31. using namespace std;