25 lines
460 B
C++
25 lines
460 B
C++
// 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:
|
|
inline Application();
|
|
inline ~Application();
|
|
};
|
|
}
|
|
|
|
#include <NDK/Application.inl>
|
|
|
|
#endif // NDK_APPLICATION_HPP
|