#include <Async.h>

#include <ppltasks.h>
using namespace concurrency;

#include <thread>
using namespace std;

Async::Async()
{
}

void Async::Wait()
{
    create_task(([this]() {
        this_thread::sleep_for(chrono::seconds(5));
        OutputDebugString(L"Wait finish\n");
    }));
}