一応できたのかな?
VisualStudio2012C++EEで動作
削除面倒なのでこれでいいじゃん。
//#include <iostream>
//#include <exception>
#include <memory>
#include<stdio.h>
using namespace std;
void main()
{
printf("Hello world\n");
unique_ptr<int> ttt( new int(7777));
printf("%d\n",*ttt);
}