~thomas-voss/compiz-core/fix-globals

« back to all changes in this revision

Viewing changes to src/tests/globals.h

  • Committer: Thomas Voß
  • Date: 2012-01-17 15:51:49 UTC
  • Revision ID: thomas.voss@rub.de-20120117155149-7vx59w01tomlquz0
Removed all public externals and put them in a class CompGlobal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef GLOBALS_H
2
 
#define GLOBALS_H
3
 
 
4
 
char *programName;
5
 
char **programArgv;
6
 
int  programArgc;
7
 
 
8
 
bool shutDown = false;
9
 
bool restartSignal = false;
10
 
 
11
 
CompWindow *lastFoundWindow = 0;
12
 
 
13
 
bool replaceCurrentWm = false;
14
 
bool indirectRendering = false;
15
 
bool noDetection = false;
16
 
bool useDesktopHints = false;
17
 
bool debugOutput = false;
18
 
bool useCow = true;
19
 
 
20
 
std::list <CompString> initialPlugins;
21
 
 
22
 
unsigned int pluginClassHandlerIndex = 0;
23
 
 
24
 
#endif // GLOBALS_H