SS.cpp
Go to the documentation of this file.
1 #include "SS.hpp"
2 
3 namespace iv
4 {
5 
7 {
8 }
9 
10 SS::SS( char const * val )
11 {
12  this->oss << val;
13 }
14 
15 std::string SS::operator<<( str )
16 {
17  return this->oss.str();
18 }
19 
20 std::string SS::operator<<( str ) const
21 {
22  return this->oss.str();
23 }
24 
25 char const * SS::operator<<( c_str )
26 {
27  this->tmp = this->oss.str();
28  return this->tmp.c_str();
29 }
30 
31 char const * SS::operator<<( c_str ) const
32 {
33  this->tmp = this->oss.str();
34  return this->tmp.c_str();
35 }
36 
37 }