From: Yurii R. <yr...@us...> - 2003-02-01 04:10:22
|
Update of /cvsroot/eas-dev/eas-dev/components/logger/src In directory sc8-pr-cvs1:/tmp/cvs-serv10261/components/logger/src Modified Files: consolelogger.cxx consolelogger.hxx logger.cxx Added Files: logger_impls.hxx Log Message: minor modifications to `logger' component (not finished yet) --- NEW FILE: logger_impls.hxx --- /* $Id: logger_impls.hxx,v 1.1 2003/02/01 04:10:19 yrashk Exp $ */ Sequence<OU_String> SAL_CALL getImplementations() throw (RuntimeException) { // TODO } Index: consolelogger.cxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/consolelogger.cxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- consolelogger.cxx 23 Jan 2003 03:42:05 -0000 1.1 +++ consolelogger.cxx 1 Feb 2003 04:10:19 -0000 1.2 @@ -96,7 +96,7 @@ throw(RuntimeException); static Sequence< OUString > SAL_CALL getSupportedServiceNames_Static(); - // XXConsoleLogger + // XConsoleLogger virtual void SAL_CALL ignoreLogLevel (logLevel aLL, sal_Bool bOnOff) throw (RuntimeException) { @@ -110,6 +110,7 @@ cout << message; } +#include "logger_impls.hxx" }; Index: consolelogger.hxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/consolelogger.hxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- consolelogger.hxx 23 Jan 2003 03:42:05 -0000 1.1 +++ consolelogger.hxx 1 Feb 2003 04:10:19 -0000 1.2 @@ -55,6 +55,7 @@ throw (RuntimeException); virtual void SAL_CALL log(logLevel aLL, const OUString& message) throw (RuntimeException); + Sequence<OU_String> SAL_CALL getImplementations() throw (RuntimeException); }; Reference<XInterface> SAL_CALL XConsoleLoggerImpl_create( Index: logger.cxx =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/components/logger/src/logger.cxx,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- logger.cxx 23 Jan 2003 03:42:05 -0000 1.1 +++ logger.cxx 1 Feb 2003 04:10:19 -0000 1.2 @@ -110,6 +110,8 @@ { } +#include "logger_impls.hxx" + }; |