libmoldeo (Moldeo 1.0 Core)  1.0
libmoldeo es el conjunto de objetos y funciones, que permiten ejecutar las operaciones básicas de la plataforma Moldeo, y que compone su núcleo.
 Todo Clases Namespaces Archivos Funciones Variables 'typedefs' Enumeraciones Valores de enumeraciones Amigas 'defines' Grupos Páginas
moDebugManager.h
Ir a la documentación de este archivo.
1 /*******************************************************************************
2 
3  moDebugManager.h
4 
5  ****************************************************************************
6  * *
7  * This source is free software; you can redistribute it and/or modify *
8  * it under the terms of the GNU General Public License as published by *
9  * the Free Software Foundation; either version 2 of the License, or *
10  * (at your option) any later version. *
11  * *
12  * This code is distributed in the hope that it will be useful, but *
13  * WITHOUT ANY WARRANTY; without even the implied warranty of *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
15  * General Public License for more details. *
16  * *
17  * A copy of the GNU General Public License is available on the World *
18  * Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
19  * obtain it by writing to the Free Software Foundation, *
20  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
21  * *
22  ****************************************************************************
23 
24  Copyright(C) 2006 Fabricio Costa
25 
26  Authors:
27  Fabricio Costa
28 
29 *******************************************************************************/
30 
31 #ifndef __MODEBUGMANAGER_H
32 #define __MODEBUGMANAGER_H
33 
34 #include "moTypes.h"
35 #include "moAbstract.h"
36 #include "moText.h"
37 #include "moParam.h"
38 #include "moResourceManager.h"
39 
40 
41 class moDebugManager : public moResource {
42 
43  public:
45  virtual ~moDebugManager();
46 
47  virtual MOboolean Init();
48  virtual MOboolean Finish();
49 
51 
55  static void Error( moText p_text );
56 
58 
62  static void Message( moText p_text );
63 
65 
70  static void Log( moText p_text );
71 
76  static void Push( moText p_text );
77 
82  static moText Pop();
83 
84  static MOint Count();
85 
86 };
87 
88 #endif
89 
virtual ~moDebugManager()
static void Push(moText p_text)
static void Message(moText p_text)
Anuncia un mensaje al usuario además de guardarlo en el log de texto.
Recurso ( objeto para cargar y manipular objetos físicos de datos de imágenes, audio, video, 3d, 2d, fuentes, shaders y de cualquier otro tipo extendible por un plugin )
#define MOboolean
Definition: moTypes.h:385
static void Error(moText p_text)
Anuncia un error.
clase de para manejar textos
Definition: moText.h:75
static void Log(moText p_text)
Escribe un mensaje en el archivo de registro (log)
#define MOint
Definition: moTypes.h:388
virtual MOboolean Init()
virtual MOboolean Finish()
static moText Pop()
static MOint Count()