blob: b6092900e04341e2822a1fe5a7e681a69ca78486 (
plain)
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
45
46
47
48
49
50
51
52
53
54
55
|
/***************************************************************************
* Copyright (C) 2005 by David Saxton *
* david@bluehaze.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#include "config.h"
#ifndef NO_GPSIM
#ifndef DEBUGMANAGER_H
#define DEBUGMANAGER_H
#include <tqguardedptr.h>
#include <tqmap.h>
#include <tqobject.h>
class GpsimProcessor;
class TextDocument;
typedef TQValueList< TQGuardedPtr<GpsimProcessor> > GpsimProcessorList;
/**
@author David Saxton
*/
class DebugManager : public TQObject
{
Q_OBJECT
public:
static DebugManager * self();
~DebugManager();
void registerGpsim( GpsimProcessor * gpsim );
/**
* Called from TextDocument when it opens a URL so that it can be
* connected up to any processors that refer to its url.
*/
void urlOpened( TextDocument * td );
protected:
GpsimProcessorList m_processors;
private:
DebugManager();
static DebugManager * m_pSelf;
};
#endif
#endif
|