-
Notifications
You must be signed in to change notification settings - Fork 11
/
framework.h
27 lines (24 loc) · 935 Bytes
/
framework.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/////////////////////////////////////////////////////////////////////////////////
//
// SourceFile: Framework.h
//
// BaseLibrary: Indispensable general objects and functions
//
// Copyright (c) 2014-2024 ir. W.E. Huisman
// All rights reserved
//
#pragma once
/////////////////////////////////////////////////////////////////////////////////
//
// This file determines wheter your project is using MFC XString for a string
// or uses the SMX_String (derived from std::string) class.
//
// Included in an Microsoft Application Framework eXtension environment (MFC)
#include <tchar.h>
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some XString constructors will be explicit
#include <afx.h>
/////////////////////////////////////////////////////////////////////////////////
//
// Comment out the three lines above to use the SMX_String class.
//
/////////////////////////////////////////////////////////////////////////////////