⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bool.h

📁 This program demonstrates using a thread safe C++ class called SharedQT<T>. This example act
💻 H
字号:
/* bool.h - Boolean definitions */  /* Copyright 1998-2010 Wind River Systems, Inc. */  /*  * modification history  * --------------------  * 01a,25mar98,pai  written   *  */    #ifndef		__INCBoolh #define		__INCBoolh    #ifdef __cplusplus     enum Bool {False, True}; #else     typedef enum bool  { False, True } Bool; #endif  /* __cplusplus */    #endif	/* __INCBoolh   */ 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -