Sha256: c17e8fca79d395fc4ec72e389b621b87b689fdab4e317c53063b41a812d7219a
Contents?: true
Size: 566 Bytes
Versions: 36
Compression:
Stored size: 566 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __REFLEX_SRC_IOS_EVENT_H__ #define __REFLEX_SRC_IOS_EVENT_H__ #include <list> #import <UIKit/UIEvent.h> #include "../event.h" namespace Reflex { typedef std::list<Pointer> PrevPointerList; class NativePointerEvent : public PointerEvent { public: NativePointerEvent ( NSSet* touches, UIEvent* event, UIView* view, Pointer::ID* pointer_id); NativePointerEvent ( NSSet* touches, UIEvent* event, UIView* view, PrevPointerList* prev_pointers); };// NativePointerEvent }// Reflex #endif//EOH
Version data entries
36 entries across 36 versions & 1 rubygems