#ifndef TEMPORAL_RS_DisplayOffset_D_HPP
#define TEMPORAL_RS_DisplayOffset_D_HPP
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <memory>
#include <functional>
#include <optional>
#include <cstdlib>
#include "diplomat_runtime.hpp"
namespace temporal_rs {
namespace capi {
enum DisplayOffset {
DisplayOffset_Auto = 0,
DisplayOffset_Never = 1,
};
typedef struct DisplayOffset_option {union { DisplayOffset ok; }; bool is_ok; } DisplayOffset_option;
} }
namespace temporal_rs {
class DisplayOffset {
public:
enum Value {
Auto = 0,
Never = 1,
};
DisplayOffset(): value(Value::Auto) {}
constexpr DisplayOffset(Value v) : value(v) {}
constexpr operator Value() const { return value; }
explicit operator bool() const = delete;
inline temporal_rs::capi::DisplayOffset AsFFI() const;
inline static temporal_rs::DisplayOffset FromFFI(temporal_rs::capi::DisplayOffset c_enum);
private:
Value value;
};
} #endif