blob: d6ab23fc3d93d3628dc3930711cdf1b44a3ea2a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#include <stdexcept>
#include <format>
#include "Private.h"
namespace crepe {
template <typename T, typename... Args>
T & Private::set(Args &&... args) {
if (!this->empty()) this->destructor(this->instance);
T * instance = new T(std::forward<Args>(args)...);
this->instance = static_cast<void*>(instance);
this->destructor = [](void * instance) {
delete static_cast<T*>(instance);
};
this->type = typeid(T);
return *instance;
}
template <typename T>
T & Private::get() {
using namespace std;
if (this->empty())
throw out_of_range("Private: get() called on empty object");
type_index requested_type = typeid(T);
if (this->type != requested_type)
throw logic_error(format("Private: get() called with [T = {}] (actual is [T = {}])", requested_type.name(), this->type.name()));
return *static_cast<T*>(this->instance);
}
}
|