view include/QObjectEntity.h @ 252:37eed70de029

More things broken than fixed. Rolling back to 263
author maxter
date Sat, 22 Aug 2009 12:50:58 +0000
parents 7664de4a55e5
children 34a37904ff77
line wrap: on
line source

#ifndef QQOBJECTENTITY_H
#define QQOBJECTENTITY_H

#include <cstdlib>

class Qtd_QObjectEntity
{
public:
	Qtd_QObjectEntity(void *d_ptr) { _d_ptr = d_ptr; }
	void *d_entity() const { return _d_ptr; }

private:
	void *_d_ptr;
};

#endif // QQOBJECTENTITY_H