add descriptive subsystem name string

This commit is contained in:
Fischlurch 2008-12-03 06:17:46 +01:00 committed by Christian Thaeter
parent b6a3139b66
commit 01876fd576
6 changed files with 9 additions and 0 deletions

View file

@ -32,6 +32,7 @@ namespace backend {
class EngineSubsysDescriptor
: public Subsys
{
operator string () { return "Engine"; }
bool
shouldStart (lumiera::Option&)

View file

@ -32,6 +32,7 @@ namespace backend {
class NetNodeSubsysDescriptor
: public Subsys
{
operator string () { return "Renderfarm node"; }
bool
shouldStart (lumiera::Option&)

View file

@ -32,6 +32,7 @@ namespace backend {
class ScriptRunnerSubsysDescriptor
: public Subsys
{
operator string () { return "Script runner"; }
bool
shouldStart (lumiera::Option&)

View file

@ -32,6 +32,7 @@ namespace gui {
class GuiSubsysDescriptor
: public Subsys
{
operator string () { return "Lumiera GTK GUI"; }
bool
shouldStart (lumiera::Option&)

View file

@ -77,6 +77,9 @@ namespace lumiera {
virtual ~Subsys();
/** a human readable name */
virtual operator string () =0;
/** define a dependency to another Subsys
* required for running this subsystem */

View file

@ -33,6 +33,7 @@ namespace proc {
class BuilderSubsysDescriptor
: public Subsys
{
operator string () { return "Builder"; }
bool
shouldStart (lumiera::Option&)
@ -61,6 +62,7 @@ namespace proc {
class SessionSubsysDescriptor
: public Subsys
{
operator string () { return "Session"; }
bool
shouldStart (lumiera::Option&)