struct EE::Graphics::RichText::InlineSource

#include <richtext.hpp>

struct InlineSource {
    // fields

    InlineSourceType type { InlineSourceType::None };
    void* ptr { nullptr };

    // construction

    InlineSource(InlineSourceType type = InlineSourceType::None, void* ptr = nullptr);

    // methods

    bool operator==(const InlineSource& other) const;
    bool operator!=(const InlineSource& other) const;
};