Design Pattern Examples
Overview of object-oriented design patterns
Bridge_Logger.cpp File Reference

Implementation of the Logger class used in the Bridge Pattern. More...

#include <exception>
#include <memory>
#include <string>
#include <sstream>
#include <cstdarg>
#include "Bridge_Logger.h"
#include "Bridge_ConsoleLogger.h"
#include "Bridge_FileLogger.h"
#include "Bridge_NullLogger.h"
Include dependency graph for Bridge_Logger.cpp:

Go to the source code of this file.

Namespaces

namespace  DesignPatternExamples_cpp
 The namespace containing all Design Pattern Examples implemented in C++.
 

Detailed Description

Implementation of the Logger class used in the Bridge Pattern.

Definition in file Bridge_Logger.cpp.