Engauge Digitizer 2
Loading...
Searching...
No Matches
Public Member Functions | List of all members
log4cpp::CategoryStream Class Reference

Streaming of simple types and objects to a category. More...

#include <CategoryStream.hh>

Collaboration diagram for log4cpp::CategoryStream:
Collaboration graph

Public Member Functions

 CategoryStream (Category &category, Priority::Value priority)
 Single constructor.
 
virtual ~CategoryStream ()
 
CategorygetCategory () const
 Return useless value.
 
Priority::Value getPriority () const throw ()
 Return useless value.
 
void flush ()
 Noop.
 
template<typename T >
CategoryStreamoperator<< (const T &)
 Stream of arbitrary types and objects.
 
CategoryStreamoperator<< (const char *)
 Noop insertion method for character.
 
CategoryStreamoperator<< (const std::string &)
 Noop insertion method for string.
 
std::streamsize width (std::streamsize wide)
 Noop method to get width.
 

Detailed Description

Streaming of simple types and objects to a category.

Definition at line 15 of file CategoryStream.hh.

Constructor & Destructor Documentation

◆ CategoryStream()

log4cpp::CategoryStream::CategoryStream ( Category & category,
Priority::Value priority )

Single constructor.

Definition at line 6 of file CategoryStream.cpp.

7 :
8 m_category (category)
9 {
10 }
const int INNER_RADIUS_MIN

◆ ~CategoryStream()

log4cpp::CategoryStream::~CategoryStream ( )
virtual

Definition at line 12 of file CategoryStream.cpp.

13 {
14 }

Member Function Documentation

◆ flush()

void log4cpp::CategoryStream::flush ( )

Noop.

◆ getCategory()

Category & log4cpp::CategoryStream::getCategory ( ) const
inline

Return useless value.

Definition at line 25 of file CategoryStream.hh.

25{ return m_category; }

◆ getPriority()

Priority::Value log4cpp::CategoryStream::getPriority ( ) const
throw ( )
inline

Return useless value.

Definition at line 28 of file CategoryStream.hh.

28 {
29 return m_priority;
30 }

◆ operator<<() [1/3]

CategoryStream & log4cpp::CategoryStream::operator<< ( const char * )
inline

Noop insertion method for character.

Definition at line 42 of file CategoryStream.hh.

42 {
43 return *this;
44 }

◆ operator<<() [2/3]

CategoryStream & log4cpp::CategoryStream::operator<< ( const std::string & )
inline

Noop insertion method for string.

Definition at line 47 of file CategoryStream.hh.

47 {
48 return *this;
49 }

◆ operator<<() [3/3]

template<typename T >
CategoryStream & log4cpp::CategoryStream::operator<< ( const T & )
inline

Stream of arbitrary types and objects.

Definition at line 37 of file CategoryStream.hh.

37 {
38 return *this;
39 }

◆ width()

std::streamsize log4cpp::CategoryStream::width ( std::streamsize wide)

Noop method to get width.


The documentation for this class was generated from the following files: