Update of /cvsroot/eas-dev/eas-dev/components/econf/idl/org/openeas/configuration
In directory sc8-pr-cvs1:/tmp/cvs-serv2940/components/econf/idl/org/openeas/configuration
Modified Files:
XRegistryStorage.idl
Log Message:
adding Boost, misc changes
Index: XRegistryStorage.idl
===================================================================
RCS file: /cvsroot/eas-dev/eas-dev/components/econf/idl/org/openeas/configuration/XRegistryStorage.idl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- XRegistryStorage.idl 9 Feb 2003 08:18:17 -0000 1.2
+++ XRegistryStorage.idl 10 Feb 2003 20:45:42 -0000 1.3
@@ -9,15 +9,17 @@
module org { module openeas { module configuration {
+typedef sequence<string> pkey;
+
interface XRegistryStorage: com::sun::star::uno::XInterface
{
void open([in] string aURL);
void close();
- void storeString([in] string aKey, [in] string aVal);
- void storeNumeric([in] string aKey, [in] long lVal);
+ void storeString([in] pkey aKey, [in] string aVal);
+ void storeNumeric([in] pkey aKey, [in] long lVal);
- void remove([in] string aKey);
+ void remove([in] pkey aKey);
boolean isSupported();
};
|