1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/* ====================================================================
* Copyright (c) 2006, 2008 Martin Hauner
* http://subcommander.tigris.org
*
* Subcommander is licensed as described in the file doc/COPYING, which
* you should have received as part of this distribution.
* ====================================================================
*/
#ifndef _SC_TARGETREPOSITORY_H
#define _SC_TARGETREPOSITORY_H
// sc
#include "util/Id.h"
// qt
class QObject;
/**
* Manages a target id -> object map.
*/
class TargetRepository
{
public:
/**
* initialize the TargetRepository.
*/
static void setup();
/**
* cleanup the TargetRepository.
*/
static void teardown();
/**
* create a new target id used in the add and del method calls.
*/
static ID create();
/**
* add a new target to the object map.
*/
static void add( ID tid, QObject* o );
/**
* returns the object to a given target id or NULL if the object is
* not registered.
*/
static QObject* get( ID tid );
/**
* remove a target from the object map.
*/
static void del( ID tid );
/**
* set error target id. An object for the id must be set with add().
*/
static void setError( ID errortid );
/**
* returns the object to the error target id configured by setup().
*/
static QObject* getError();
};
#endif // _SC_TARGETREPOSITORY_H
|