Sha256: 6e05fd6cc4d9881b0afc47558e83150550105f901b7a49c328779987de75040b

Contents?: true

Size: 477 Bytes

Versions: 3

Compression:

Stored size: 477 Bytes

Contents

// -*- c++ -*-
#pragma once
#ifndef __REFLEX_SRC_IOS_APPLICATION_DATA_H__
#define __REFLEX_SRC_IOS_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

3 entries across 3 versions & 1 rubygems

Version Path
reflexion-0.1.12 src/ios/application_data.h
reflexion-0.1.11 src/ios/application_data.h
reflexion-0.1.10 src/ios/application_data.h