Sha256: b1231e36ae2d62e863196ffd10ffc49d9a89ea10971a4699f4cdbbf857a4ce00
Contents?: true
Size: 492 Bytes
Versions: 21
Compression:
Stored size: 492 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __REFLEX_SRC_IOS_WINDOW_H__ #define __REFLEX_SRC_IOS_WINDOW_H__ #include "../window.h" @class ReflexViewController; namespace Reflex { struct WindowData : public Window::Data { ReflexViewController* view_controller = nil; bool is_valid () const { return view_controller; } };// WindowData WindowData& Window_get_data (Window* window); const WindowData& Window_get_data (const Window* window); }// Reflex #endif//EOH
Version data entries
21 entries across 21 versions & 1 rubygems