Sha256: ca4c68eb25a0b4f32779642c34878ebb35fa3c322e907520053f08a7747f341f

Contents?: true

Size: 469 Bytes

Versions: 4

Compression:

Stored size: 469 Bytes

Contents

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

4 entries across 4 versions & 1 rubygems

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