AppCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
managed_defines.h
Go to the documentation of this file.
1 #ifdef _MANAGED
2  using namespace System;
3  #define __EDATAPTR ^
4  #define __EVALREF %
5  #define __ESTRING System::String^
6  #define __ECLASS ref class
7  #define __ENEW gcnew
8  #define __EOVERRIDE override
9  #define __EPUBLIC public
10  #define __ENULLPTR nullptr
11  #define __EBYTEARR cli::array<Byte>
12  #define __EABSTRACT abstract
13 #else
14  #define __EDATAPTR *
15  #define __EVALREF &
16  #define __ESTRING std::string
17  #define __ECLASS class
18  #define __ENEW new
19  #define __EOVERRIDE
20  #define __EPUBLIC
21  #define __ENULLPTR NULL
22  #define __EBYTEARR char
23  #define __EABSTRACT
24 #endif