Sha256: 76259977e41b00eb106f88f2474453a8932d8adac55a1ded972995ac400bc5f4

Contents?: true

Size: 477 Bytes

Versions: 3

Compression:

Stored size: 477 Bytes

Contents

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

3 entries across 3 versions & 1 rubygems

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