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.
51 lines
498 B
51 lines
498 B
/**
|
|
* DumpManager
|
|
* Part of KCachegrind
|
|
* 2003, Josef Weidendorfer (GPL V2)
|
|
*/
|
|
|
|
#include "dumpmanager.h"
|
|
|
|
|
|
//
|
|
// Dump
|
|
//
|
|
|
|
Dump::Dump(TQString file)
|
|
{
|
|
_filename = file;
|
|
}
|
|
|
|
|
|
//
|
|
// DumpManager
|
|
//
|
|
|
|
DumpManager* DumpManager::_self = 0;
|
|
|
|
|
|
DumpManager::DumpManager()
|
|
{
|
|
}
|
|
|
|
DumpManager* DumpManager::self()
|
|
{
|
|
if (!_self)
|
|
_self = new DumpManager();
|
|
|
|
return _self;
|
|
}
|
|
|
|
|
|
DumpList DumpManager::loadableDumps()
|
|
{
|
|
DumpList res;
|
|
|
|
return res;
|
|
}
|
|
|
|
TraceData* DumpManager::load(Dump*)
|
|
{
|
|
return 0;
|
|
}
|