Sha256: 333970199027313f886cba55dcf729c7cc2a13427b5f5aa6f93d55af918d9639
Contents?: true
Size: 472 Bytes
Versions: 3
Compression:
Stored size: 472 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __REFLEX_COCOA_APPLICATIONDATA_H__ #define __REFLEX_COCOA_APPLICATIONDATA_H__ #include <reflex/application.h> @class CocoaApplication; namespace Reflex { struct Application::Data { CocoaApplication* cocoa; String name; Data () : cocoa(nil) { } operator bool () const { return cocoa; } bool operator ! () const { return !operator bool(); } };// Application::Data }// Reflex #endif//EOH
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
reflexion-0.1.6 | src/cocoa/applicationdata.h |
reflexion-0.1.5 | src/cocoa/applicationdata.h |
reflexion-0.1.4 | src/cocoa/applicationdata.h |