2011-07-12 15:27:09 -06:00
|
|
|
#include "Internal.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "MemAccess.h"
|
|
|
|
#include "Core.h"
|
|
|
|
#include "Virtual.h"
|
2011-07-12 15:27:09 -06:00
|
|
|
using namespace DFHack;
|
|
|
|
|
2011-10-26 14:18:13 -06:00
|
|
|
std::string t_virtual::getClassName() const
|
2011-07-12 15:27:09 -06:00
|
|
|
{
|
|
|
|
Core & c = Core::getInstance();
|
|
|
|
return c.p->readClassName(vptr);
|
|
|
|
}
|