📄 deprecationmgr.h
字号:
// ==========================================================
// Deprecation Manager
//
// Design and implementation by
// - Noel Llopis (Game Programming Gems II)
//
// This file is part of FreeImage 3
//
// COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES
// THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE
// OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
// CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT
// THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY
// SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
// PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER
// THIS DISCLAIMER.
//
// Use at your own risk!
// ==========================================================
#ifndef DEPRECATIONMGR_H
#define DEPRECATIONMGR_H
#ifdef _MSC_VER
#pragma warning(disable : 4786 ) // identifier was truncated to 'number' characters
#endif
#include "Utilities.h"
// ==========================================================
#define DEPRECATE(a,b) \ { \ void *fptr; \ _asm { mov fptr, ebp } \ DeprecationMgr::GetInstance()->AddDeprecatedFunction(a, b, fptr); \ }
// ==========================================================
class DeprecationMgr {
#if (_MSC_VER == 1100) // VC 5.0 need to look into the docs for the compiler for the value of each version
public:
#else
private:
#endif
struct DeprecatedFunction {
const char *old_function_name;
const char *new_function_name;
std::set<int> called_from;
};
std::map<const char *, DeprecatedFunction> m_functions;
public:
DeprecationMgr();
~DeprecationMgr();
static DeprecationMgr * GetInstance ( void );
void AddDeprecatedFunction(const char *old_function_name, const char *new_function_name, const void *frame_ptr);
};
#endif //DEPRECATIONMGR_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -