mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 08:15:38 +07:00
scheduler dummy class
This commit is contained in:
@@ -18,6 +18,7 @@
|
|||||||
#include "mesh.hpp"
|
#include "mesh.hpp"
|
||||||
#include "module.hpp"
|
#include "module.hpp"
|
||||||
#include "path.hpp"
|
#include "path.hpp"
|
||||||
|
#include "scheduler.hpp"
|
||||||
#include "streams.hpp"
|
#include "streams.hpp"
|
||||||
#include "strfmts.hpp"
|
#include "strfmts.hpp"
|
||||||
#include "strings.hpp"
|
#include "strings.hpp"
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ namespace e2d
|
|||||||
class image;
|
class image;
|
||||||
class jobber;
|
class jobber;
|
||||||
class mesh;
|
class mesh;
|
||||||
|
class scheduler;
|
||||||
class input_stream;
|
class input_stream;
|
||||||
class output_stream;
|
class output_stream;
|
||||||
class input_sequence;
|
class input_sequence;
|
||||||
|
|||||||
18
headers/enduro2d/utils/scheduler.hpp
Normal file
18
headers/enduro2d/utils/scheduler.hpp
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
18
sources/enduro2d/utils/scheduler.cpp
Normal file
18
sources/enduro2d/utils/scheduler.cpp
Normal 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;
|
||||||
|
}
|
||||||
11
untests/sources/untests_utils/scheduler.cpp
Normal file
11
untests/sources/untests_utils/scheduler.cpp
Normal 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") {
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user