WvStreams
ICategoryManager.h
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2  *
3  * XPLC - Cross-Platform Lightweight Components
4  * Copyright (C) 2002-2003, Net Integration Technologies, Inc.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License
8  * as published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19  * USA
20  */
21 
22 #ifndef __XPLC_ICATEGORYMANAGER_H__
23 #define __XPLC_ICATEGORYMANAGER_H__
24 
25 #if defined(__GNUC__) && __GNUC__ > 3
26 # pragma GCC system_header
27 #endif
28 
29 #include <xplc/IServiceHandler.h>
30 #include <xplc/ICategory.h>
31 
37 class ICategoryManager: public IObject {
39 public:
44  virtual void registerComponent(const UUID& category,
45  const UUID& component,
46  const char* extrastring) = 0;
50  virtual ICategory* getCategory(const UUID&) = 0;
51 };
52 
53 DEFINE_IID(ICategoryManager, {0xb5f218a5, 0xb50a, 0x4e8c,
54  {0x9e, 0x0e, 0x69, 0x2e, 0x17, 0xf0, 0xe2, 0x99}});
55 
56 #endif /* __XPLC_ICATEGORYMANAGER_H__ */
ICategoryManager::getCategory
virtual ICategory * getCategory(const UUID &)=0
Get a category object for the specified category.
UNSTABLE_INTERFACE
#define UNSTABLE_INTERFACE
Used to mark an interface as unstable.
Definition: IObject.h:46
ICategory
Represents a category.
Definition: ICategory.h:36
ICategoryManager
Definition: ICategoryManager.h:37
IObject
Definition: IObject.h:65
_GUID
The structure underlying UUIDs.
Definition: uuid.h:94
IServiceHandler.h
ICategoryManager::registerComponent
virtual void registerComponent(const UUID &category, const UUID &component, const char *extrastring)=0
Register a component with a category.
DEFINE_IID
#define DEFINE_IID(iface, u1, u2, u3, u4, u5, u6, u7, u8, u9, u10, u11)
Used to define the IID of an interface.
Definition: uuid.h:134