t k / Mbed 2 deprecated MovPlayer

Dependencies:   AsciiFont GR-PEACH_video GraphicsFramework LCD_shield_config R_BSP TLV320_RBSP mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers CppStandardHelper.hpp Source File

CppStandardHelper.hpp

00001 #ifndef __CppStandardHelper__
00002 #define __CppStandardHelper__
00003 
00004 #if __cplusplus < 201103L
00005 /* Online compiler (C++98) */
00006 #   define constexpr const
00007 #   define ENUM enum
00008 #   define nullptr NULL
00009 #   define ONLINE_COMPILER
00010 #else
00011 /* GCCARM */
00012 #   define ENUM enum class
00013 #endif
00014 
00015 #endif
00016