scheduler dummy class

This commit is contained in:
2018-12-05 19:26:16 +07:00
parent 1494688a60
commit 1e4e9b7cc3
5 changed files with 49 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
#include "mesh.hpp"
#include "module.hpp"
#include "path.hpp"
#include "scheduler.hpp"
#include "streams.hpp"
#include "strfmts.hpp"
#include "strings.hpp"

View File

@@ -17,6 +17,7 @@ namespace e2d
class image;
class jobber;
class mesh;
class scheduler;
class input_stream;
class output_stream;
class input_sequence;

View File

@@ -0,0 +1,18 @@
/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018 Matvey Cherevko
******************************************************************************/
#pragma once
#include "_utils.hpp"
namespace e2d
{
class scheduler final : private noncopyable {
public:
scheduler();
~scheduler() noexcept;
};
}

View File

@@ -0,0 +1,18 @@
/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018 Matvey Cherevko
******************************************************************************/
#include <enduro2d/utils/scheduler.hpp>
namespace
{
using namespace e2d;
}
namespace e2d
{
scheduler::scheduler() = default;
scheduler::~scheduler() noexcept = default;
}

View File

@@ -0,0 +1,11 @@
/*******************************************************************************
* This file is part of the "Enduro2D"
* For conditions of distribution and use, see copyright notice in LICENSE.md
* Copyright (C) 2018 Matvey Cherevko
******************************************************************************/
#include "_utils.hpp"
using namespace e2d;
TEST_CASE("scheduler") {
}