A bug was discovered in glaze which prevented valid toml output. We have switched to toml++ and reflect-cpp. The interface has remained the same so this should not break any code
88 lines
2.3 KiB
C++
88 lines
2.3 KiB
C++
#ifndef RFL_RFL_HPP_
|
|
#define RFL_RFL_HPP_
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(push)
|
|
#pragma warning(disable : 4244)
|
|
#pragma warning(disable : 4101)
|
|
#endif
|
|
|
|
#include "rfl/AddStructName.hpp"
|
|
#include "rfl/AddTagsToVariants.hpp"
|
|
#include "rfl/AllOf.hpp"
|
|
#include "rfl/AllowRawPtrs.hpp"
|
|
#include "rfl/AnyOf.hpp"
|
|
#include "rfl/Attribute.hpp"
|
|
#include "rfl/Binary.hpp"
|
|
#include "rfl/Box.hpp"
|
|
#include "rfl/Bytestring.hpp"
|
|
#include "rfl/DefaultIfMissing.hpp"
|
|
#include "rfl/DefaultVal.hpp"
|
|
#include "rfl/Description.hpp"
|
|
#include "rfl/ExtraFields.hpp"
|
|
#include "rfl/Field.hpp"
|
|
#include "rfl/Flatten.hpp"
|
|
#include "rfl/Generic.hpp"
|
|
#include "rfl/Hex.hpp"
|
|
#include "rfl/Literal.hpp"
|
|
#include "rfl/NamedTuple.hpp"
|
|
#include "rfl/NoExtraFields.hpp"
|
|
#include "rfl/NoFieldNames.hpp"
|
|
#include "rfl/NoOptionals.hpp"
|
|
#include "rfl/Object.hpp"
|
|
#include "rfl/Oct.hpp"
|
|
#include "rfl/OneOf.hpp"
|
|
#include "rfl/Pattern.hpp"
|
|
#include "rfl/PatternValidator.hpp"
|
|
#include "rfl/Processors.hpp"
|
|
#include "rfl/Ref.hpp"
|
|
#include "rfl/Rename.hpp"
|
|
#include "rfl/Size.hpp"
|
|
#include "rfl/Skip.hpp"
|
|
#include "rfl/SnakeCaseToCamelCase.hpp"
|
|
#include "rfl/SnakeCaseToPascalCase.hpp"
|
|
#include "rfl/TaggedUnion.hpp"
|
|
#include "rfl/Timestamp.hpp"
|
|
#include "rfl/UnderlyingEnums.hpp"
|
|
#include "rfl/Validator.hpp"
|
|
#include "rfl/Variant.hpp"
|
|
#include "rfl/Vectorstring.hpp"
|
|
#include "rfl/always_false.hpp"
|
|
#include "rfl/apply.hpp"
|
|
#include "rfl/as.hpp"
|
|
#include "rfl/comparisons.hpp"
|
|
#include "rfl/concepts.hpp"
|
|
#include "rfl/default.hpp"
|
|
#include "rfl/define_literal.hpp"
|
|
#include "rfl/define_named_tuple.hpp"
|
|
#include "rfl/define_tagged_union.hpp"
|
|
#include "rfl/define_variant.hpp"
|
|
#include "rfl/enums.hpp"
|
|
#include "rfl/extract_discriminators.hpp"
|
|
#include "rfl/field_type.hpp"
|
|
#include "rfl/fields.hpp"
|
|
#include "rfl/from_generic.hpp"
|
|
#include "rfl/from_named_tuple.hpp"
|
|
#include "rfl/get.hpp"
|
|
#include "rfl/make_from_tuple.hpp"
|
|
#include "rfl/make_named_tuple.hpp"
|
|
#include "rfl/name_t.hpp"
|
|
#include "rfl/named_tuple_t.hpp"
|
|
#include "rfl/parsing/CustomParser.hpp"
|
|
#include "rfl/patterns.hpp"
|
|
#include "rfl/remove_fields.hpp"
|
|
#include "rfl/replace.hpp"
|
|
#include "rfl/to_generic.hpp"
|
|
#include "rfl/to_named_tuple.hpp"
|
|
#include "rfl/to_view.hpp"
|
|
#include "rfl/tuple_cat.hpp"
|
|
#include "rfl/type_name_t.hpp"
|
|
#include "rfl/view_t.hpp"
|
|
#include "rfl/visit.hpp"
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(pop)
|
|
#endif
|
|
|
|
#endif
|