(NDK) Added Application class

Let's try something


Former-commit-id: ebace85e2b050b1fbb994a61a644b60b85cc5a30
This commit is contained in:
Lynix 2015-04-07 17:41:17 +02:00
parent 1bd45731cd
commit f290b8d886
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,24 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
#pragma once
#ifndef NDK_APPLICATION_HPP
#define NDK_APPLICATION_HPP
#include <NDK/Prerequesites.hpp>
namespace Ndk
{
class NDK_API Application
{
public:
Application();
~Application();
};
}
#include <NDK/Application.inl>
#endif // NDK_APPLICATION_HPP

View File

@ -0,0 +1,25 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
#include <Nazara/Core/ErrorFlags.hpp>
#include <NDK/Sdk.hpp>
namespace Ndk
{
inline Application::Application()
{
NzErrorFlags errFlags(nzErrorFlag_ThrowException, true);
// Initialisation du SDK
Sdk::Initialize();
}
inline Application::~Application()
{
// Libération du SDK
Sdk::Uninitialize();
// Libération automatique des modules
}
}

View File

@ -0,0 +1,5 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Development Kit"
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
#include <NDK/Application.hpp>