mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-11 04:21:08 +00:00
21 lines
No EOL
241 B
C++
21 lines
No EOL
241 B
C++
|
|
#include "object.h"
|
|
|
|
namespace
|
|
{
|
|
class Blah
|
|
{
|
|
int i;
|
|
public:
|
|
Blah()
|
|
{
|
|
i = 3;
|
|
}
|
|
};
|
|
|
|
void Test()
|
|
{
|
|
char storage[sizeof(Blah)];
|
|
constructor(*reinterpret_cast<Blah*>(storage));
|
|
}
|
|
} |