summaryrefslogtreecommitdiff
path: root/TAO/examples/Logging/Logger_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Logging/Logger_i.h')
-rw-r--r--TAO/examples/Logging/Logger_i.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/TAO/examples/Logging/Logger_i.h b/TAO/examples/Logging/Logger_i.h
index cfc4ed15cac..d5a5a36cc5e 100644
--- a/TAO/examples/Logging/Logger_i.h
+++ b/TAO/examples/Logging/Logger_i.h
@@ -36,28 +36,23 @@ public:
virtual ~Logger_i (void);
// destructor
- virtual void log (const Logger::Log_Record &log_rec)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void log (const Logger::Log_Record &log_rec);
// Writes the <log_rec> to the standard output.
virtual void logv (const Logger::Log_Record &log_rec,
- Logger::Verbosity_Level verbosity)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ Logger::Verbosity_Level verbosity);
// Writes the <log_rec> to the standard output with the given
// verbosity level
- virtual void log_twoway (const Logger::Log_Record &log_rec)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void log_twoway (const Logger::Log_Record &log_rec);
// Writes the <log_rec> to the standard output.
virtual void logv_twoway (const Logger::Log_Record &log_rec,
- Logger::Verbosity_Level verbosity)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ Logger::Verbosity_Level verbosity);
// Writes the <log_rec> to the standard output with the given
// verbosity level
- void verbosity (Logger::Verbosity_Level level)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ void verbosity (Logger::Verbosity_Level level);
// Sets the verbosity level. Valid values are {VERBOSE, VERBOSE_LITE
// and SILENT}. Defaults to VERBOSE
@@ -90,8 +85,7 @@ public:
~Logger_Factory_i (void);
// Destructor.
- virtual Logger_ptr make_logger (const char *name)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual Logger_ptr make_logger (const char *name);
// This function returns a logger with name <name>. If <name> is
// unique, a new logger is created; else, a previously created
// logger of name <name> is returned