| 73 | bool Supports(const Apto::String& key) const { return m_factory.Supports(key.AsLower()); } |
| 74 | |
| 75 | const cString Describe(const Apto::String& key) const |
| 76 | { |
| 77 | ClassDescFunction func; |
| 78 | if (m_desc_funcs.Get(key.AsLower(), func)) return func(); |
| 79 | return "(Not Available)"; |
| 80 | } |
| 81 | Apto::String DescribeAll() const; |
| 82 | |
| 83 |