// -*- c++ -*- #pragma once #ifndef __REFLEX_OSX_APPLICATION_DATA_H__ #define __REFLEX_OSX_APPLICATION_DATA_H__ #include @class AppDelegate; namespace Reflex { struct Application::Data { AppDelegate* delegate; String name; Data () : delegate(nil) { } operator bool () const { return delegate; } bool operator ! () const { return !operator bool(); } };// Application::Data }// Reflex #endif//EOH