-
Notifications
You must be signed in to change notification settings - Fork 347
/
Copy pathbackend_registry.h
33 lines (28 loc) · 1.17 KB
/
backend_registry.h
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
//
// Created by Alan Freitas on 26/08/20.
//
#ifndef MATPLOTPLUSPLUS_BACKEND_REGISTRY_H
#define MATPLOTPLUSPLUS_BACKEND_REGISTRY_H
#include <matplot/detail/config.h>
#include <matplot/backend/backend_interface.h>
#include <matplot/backend/gnuplot.h>
#include <stdexcept>
namespace matplot {
template <class BACKEND_TYPE, class ... Args>
std::shared_ptr<backend::backend_interface> create_backend(Args&&... args) {
if constexpr (std::is_base_of_v<backend::backend_interface,
BACKEND_TYPE>) {
std::shared_ptr<BACKEND_TYPE> dp = std::make_shared<BACKEND_TYPE>(std::forward<Args>(args)...);
std::shared_ptr<backend::backend_interface> bp =
std::dynamic_pointer_cast<backend::backend_interface>(dp);
return bp;
} else {
throw std::invalid_argument(
std::string("The class ") + typeid(BACKEND_TYPE).name() +
" does not derive from backend::backend_interface");
}
}
MATPLOT_EXPORTS
std::shared_ptr<backend::backend_interface> create_default_backend();
} // namespace matplot
#endif // MATPLOTPLUSPLUS_BACKEND_REGISTRY_H