[go: up one dir, main page]

File: GlobalClass.h

package info (click to toggle)
ultracopier 0.3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 6,640 kB
  • ctags: 3,679
  • sloc: cpp: 27,286; ansic: 1,860; xml: 536; makefile: 38
file content (44 lines) | stat: -rw-r--r-- 1,241 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/** \file GlobalClass.h
\brief Define the class for all the class different of ResourcesManager, DebugEngine, ThemesManager, OptionEngine have object of this class at the global scope
\author alpha_one_x86
\version 0.3
\date 2010
\licence GPL3, see the file COPYING */

#ifndef GLOBAL_CLASS_H
#define GLOBAL_CLASS_H

#include "Environment.h"
#include "ThemesManager.h"
#include "ResourcesManager.h"
#include "OptionEngine.h"
#include "LanguagesManager.h"
#include "PluginsManager.h"

#include "interface/OptionInterface.h"

/// \brief Define the class for the debug and global variables heritage
class GlobalClass
{
	public:
		/// \brief The constructor where set the global variable to the good pointer
		GlobalClass();
		/// \brief The destructor where destroy the variable if the unique instance is no more longer used
		~GlobalClass();
	protected:
		//for the themes
		ThemesManager *themes;
		//for the resources linked with the themes
		ResourcesManager *resources;
		//for the options
		OptionEngine *options;
		//for the languages
		LanguagesManager *languages;
		//for the plugins
		PluginsManager *plugins;
		#ifdef ULTRACOPIER_DEBUG
		DebugEngine *debug_engine_instance;
		#endif // ULTRACOPIER_DEBUG
};

#endif // GLOBAL_CLASS_H