$darkmode
interface.hpp File Reference
#include <memory>
#include <optional>
#include <string>
#include <type_traits>
#include <utility>
#include <fable/conf.hpp>
#include <fable/error.hpp>
#include <fable/fable_fwd.hpp>
#include <fable/json.hpp>
Include dependency graph for interface.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  fable::schema::Interface
 
class  fable::schema::Box
 
class  fable::schema::Base< CRTP >
 

Typedefs

template<typename S >
using fable::schema::enable_if_schema_t = std::enable_if_t< std::is_base_of_v< Interface, S > >
 
template<typename T >
using fable::schema::enable_if_confable_t = std::enable_if_t< std::is_base_of_v< Confable, T > >
 
template<typename T >
using fable::schema::enable_if_not_confable_t = std::enable_if_t<!std::is_base_of_v< Confable, T > >
 

Functions

template<typename T , std::enable_if_t< std::is_base_of_v< Confable, T >, int > = 0>
auto fable::schema::make_prototype (std::string desc="")
 

Detailed Description