namespace PT renamed to pt

This commit is contained in:
2021-05-20 16:11:12 +02:00
parent 6f50626dda
commit b574289054
35 changed files with 628 additions and 641 deletions

View File

@@ -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);