zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Pragma.h
Go to the documentation of this file.
1 //
2 // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 
7 #ifndef COMPILER_PRAGMA_H_
8 #define COMPILER_PRAGMA_H_
9 
10 struct TPragma {
11  // By default optimization is turned on and debug is turned off.
13  TPragma(bool o, bool d) : optimize(o), debug(d) { }
14 
15  bool optimize;
16  bool debug;
17 };
18 
19 #endif // COMPILER_PRAGMA_H_
bool optimize
Definition: Pragma.h:15
bool debug
Definition: Pragma.h:16
TPragma()
Definition: Pragma.h:12
Definition: Pragma.h:10
return Display return Display Bool Bool int d
Definition: SDL_x11sym.h:30
#define true
Definition: ftrandom.c:49
TPragma(bool o, bool d)
Definition: Pragma.h:13
#define false
Definition: ftrandom.c:50