Browse CVS Repository
Contents of /tombo/Tombo/CppUnitTestApp/StdAfx.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
( as text)
Sat Sep 17 15:44:32 2005 UTC
(18 years, 6 months ago)
by hirami
Branch: MAIN
CVS Tags: Tombo_1_15, Tombo_1_17, Tombo_1_16, Tombo_2_0a3, B187, B186, Tombo_1_17_1, B189, B208, B213, B212, B211, B217, B216, B215, B214, B231, B230, B219, B218, SNAPSHOT20051220, B206, B207, B188, Tombo_2_0b2, Tombo_2_0b3, Tombo_2_0b1, Tombo_2_0b4, B191, B192, B193, B194, B196, B197, B198, B199, B200, B201, B202, B203, B205, B228, B229, B226, B227, B224, B225, B222, B223, B220, B221, HEAD
Branch point for: Tombo_1_17_1_branch
Changes since 1.1: +28 -0 lines
File MIME type: text/x-chdr
- removing g_Property.TopDir() dependency still.
- add unittest proj
- implement URIScanner class but not integrated yet.
| 1 |
// stdafx.h : include file for standard system include files, |
| 2 |
// or project specific include files that are used frequently, but |
| 3 |
// are changed infrequently |
| 4 |
// |
| 5 |
|
| 6 |
#if !defined(AFX_STDAFX_H__EB0CB528_6505_4130_843B_9CA567127807__INCLUDED_) |
| 7 |
#define AFX_STDAFX_H__EB0CB528_6505_4130_843B_9CA567127807__INCLUDED_ |
| 8 |
|
| 9 |
#if _MSC_VER > 1000 |
| 10 |
#pragma once |
| 11 |
#endif // _MSC_VER > 1000 |
| 12 |
|
| 13 |
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers |
| 14 |
|
| 15 |
#include <afxwin.h> // MFC core and standard components |
| 16 |
#include <afxext.h> // MFC extensions |
| 17 |
#include <afxdisp.h> // MFC Automation classes |
| 18 |
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls |
| 19 |
#ifndef _AFX_NO_AFXCMN_SUPPORT |
| 20 |
#include <afxcmn.h> // MFC support for Windows Common Controls |
| 21 |
#endif // _AFX_NO_AFXCMN_SUPPORT |
| 22 |
|
| 23 |
#pragma warning( disable : 4786 ) // remove warning "debug symbol length > 255..." |
| 24 |
|
| 25 |
//{{AFX_INSERT_LOCATION}} |
| 26 |
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. |
| 27 |
|
| 28 |
#endif // !defined(AFX_STDAFX_H__EB0CB528_6505_4130_843B_9CA567127807__INCLUDED_) |
| |