Sha256: 3609aa107c890cc7578f20507943d5b9b8f31fbdc4c37578913d71009f7c282e

Contents?: true

Size: 469 Bytes

Versions: 4

Compression:

Stored size: 469 Bytes

Contents

// -*- c++ -*-
#pragma once
#ifndef __REFLEX_OSX_APPLICATION_DATA_H__
#define __REFLEX_OSX_APPLICATION_DATA_H__


#include <reflex/application.h>


@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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
reflexion-0.1.9.1 src/osx/application_data.h
reflexion-0.1.9 src/osx/application_data.h
reflexion-0.1.8 src/osx/application_data.h
reflexion-0.1.7 src/osx/application_data.h