view include/QObjectEntity.h @ 109:08135aa00cc9

CMake: ldc support option SINGLE_D_OBJECT now. See http://www.dsource.org/projects/ldc/ticket/309.
author SokoL_SD
date Mon, 01 Jun 2009 07:15:52 +0000
parents e78566595089
children 7664de4a55e5
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