mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
23 lines
209 B
C++
23 lines
209 B
C++
|
#include "Test.h"
|
||
|
|
||
|
class Constructed
|
||
|
{
|
||
|
public:
|
||
|
Constructed()
|
||
|
{
|
||
|
TestLog("constructor");
|
||
|
}
|
||
|
~Constructed()
|
||
|
{
|
||
|
TestLog("destructor");
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Constructed thing;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
TestLog("main");
|
||
|
return 0;
|
||
|
}
|