namespace PT renamed to pt
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
// for snprintf
|
||||
#include <cstdio>
|
||||
|
||||
namespace PT
|
||||
namespace pt
|
||||
{
|
||||
|
||||
|
||||
@@ -109,8 +109,8 @@ public:
|
||||
TextStreamBase & operator<<(unsigned long long);
|
||||
TextStreamBase & operator<<(double);
|
||||
TextStreamBase & operator<<(const void *); // printing a pointer
|
||||
TextStreamBase & operator<<(const PT::Space & space);
|
||||
TextStreamBase & operator<<(const PT::Date & date);
|
||||
TextStreamBase & operator<<(const Space & space);
|
||||
TextStreamBase & operator<<(const Date & date);
|
||||
|
||||
// min width for integer output
|
||||
// if the output value has less digits then first zeroes are added
|
||||
@@ -469,7 +469,7 @@ wchar_t buf[100];
|
||||
|
||||
template<typename char_type, size_t stack_size, size_t heap_block_size>
|
||||
TextStreamBase<char_type, stack_size, heap_block_size> &
|
||||
TextStreamBase<char_type, stack_size, heap_block_size>::operator<<(const PT::Space & space)
|
||||
TextStreamBase<char_type, stack_size, heap_block_size>::operator<<(const Space & space)
|
||||
{
|
||||
space.serialize_to_space_stream(*this, true);
|
||||
|
||||
@@ -480,7 +480,7 @@ return *this;
|
||||
|
||||
template<typename char_type, size_t stack_size, size_t heap_block_size>
|
||||
TextStreamBase<char_type, stack_size, heap_block_size> &
|
||||
TextStreamBase<char_type, stack_size, heap_block_size>::operator<<(const PT::Date & date)
|
||||
TextStreamBase<char_type, stack_size, heap_block_size>::operator<<(const Date & date)
|
||||
{
|
||||
date.Serialize(*this);
|
||||
|
||||
|
Reference in New Issue
Block a user