LogDestinationConsole.h
1 //##################################################################################################
2 //
3 // Ceetron Desktop Components
4 // Component: Core
5 //
6 // --------------------------------------------------------------------------------------------
7 // Copyright (C) 2011, Ceetron AS
8 // This is UNPUBLISHED PROPRIETARY SOURCE CODE of Ceetron AS. The contents of this file may
9 // not be disclosed to third parties, copied or duplicated in any form, in whole or in part,
10 // without the prior written permission of Ceetron AS.
11 //##################################################################################################
12 
13 #pragma once
14 
15 #include "CeeCore/LogDestination.h"
16 
17 namespace cee {
18 
19 class LogEvent;
20 
21 //==================================================================================================
22 //
23 //
24 //
25 //==================================================================================================
26 class CEE_CORE_EXPORT LogDestinationConsole : public LogDestination
27 {
28 public:
30  virtual ~LogDestinationConsole();
31 
32  virtual void log(const LogEvent& logEvent);
33  virtual Str targetName() const;
34 
35 private:
36  CEE_PRIVATE_IMPL(LogDestinationConsole);
37  CEE_DISALLOW_COPY_AND_ASSIGN(LogDestinationConsole);
38 };
39 
40 } // namespace cee
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
A general unicode based string class.
Definition: Str.h:28
Log destination that writes output to console.
Definition: LogDestinationConsole.h:26
Small class describing a logged event.
Definition: LogEvent.h:31
Base class for log destinations.
Definition: LogDestination.h:35