You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/tdecachegrind/tdecachegrind/dumpmanager.h

60 lines
785 B

/**
* DumpManager
* Part of KCachegrind
* 2003, Josef Weidendorfer (GPL V2)
*
* DumpManager is a Singleton.
* - Has List of current loaded dumps / loadable dumps
* - Does "communication" with current running profiles
* for dump selection dockable
*/
#ifndef DUMPMANAGER_H
#define DUMPMANAGER_H
#include <tqstring.h>
#include <tqptrlist.h>
class Dump;
class TraceData;
typedef TQPtrList<Dump> DumpList;
/**
* A loadable profile Dump
*/
class Dump
{
public:
Dump(TQString);
TQString filename() { return _filename; }
private:
TQString _filename;
};
/*
* TODO:
* - Everything
*
*/
class DumpManager
{
public:
DumpManager();
DumpManager* self();
DumpList loadableDumps();
TraceData* load(Dump*);
private:
static DumpManager* _self;
};
#endif