VOX
A little voxel engine
Loading...
Searching...
No Matches
Graph.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "tasks.hpp"
4
5namespace task
6{
7class Graph
8{
9public:
12 Graph(const Graph &) = delete;
13 Graph & operator=(const Graph &) = delete;
14 Graph(Graph &&) = default;
15 Graph & operator=(Graph &&) = default;
16
17private:
18};
19
20}
Definition: Graph.hpp:8
Graph & operator=(Graph &&)=default
Graph(const Graph &)=delete
Graph & operator=(const Graph &)=delete
Graph(Graph &&)=default
Definition: Executor.cpp:5