interface MAGES::ILocator

Overview

An interface that declares that a given class may be used to locate project-wide defaults. More…

interface ILocator
{
    // methods

    object Locate(string key);
};

// direct descendants

class Defaults;

Detailed Documentation

An interface that declares that a given class may be used to locate project-wide defaults.

Methods

object Locate(string key)

Locate the object.

Parameters:

key

The key.

Returns:

The object that matches key, null otherwise.