|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
#include <ServiceManager.h>

Definition at line 39 of file ServiceManager.h.
Public Member Functions | |
| ServiceItem (IService *s, long p=0, bool act=false) | |
| bool | operator== (const std::string &name) const |
| bool | operator== (const IService *ptr) const |
| bool | operator< (const ServiceItem &rhs) const |
Public Attributes | |
| SmartIF< IService > | service |
| long | priority |
| bool | active |
| ServiceManager::ServiceItem::ServiceItem | ( | IService * | s, | |
| long | p = 0, |
|||
| bool | act = false | |||
| ) | [inline] |
Definition at line 40 of file ServiceManager.h.
00040 : 00041 service(s), priority(p), active(act) {} SmartIF<IService> service;
| bool ServiceManager::ServiceItem::operator== | ( | const std::string & | name | ) | const [inline] |
| bool ServiceManager::ServiceItem::operator== | ( | const IService * | ptr | ) | const [inline] |
| bool ServiceManager::ServiceItem::operator< | ( | const ServiceItem & | rhs | ) | const [inline] |
Definition at line 51 of file ServiceManager.h.
00051 { 00052 return priority < rhs.priority; 00053 }
Definition at line 42 of file ServiceManager.h.
Definition at line 43 of file ServiceManager.h.
Definition at line 44 of file ServiceManager.h.