Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
namespace1 Namespace Reference

Classes

class  MyTypeInNameSpace1
 

Functions

std::ostream & operator<< (std::ostream &os, const MyTypeInNameSpace1 &val)
 
std::ostream & operator<< (std::ostream &os, const MyTypeInNameSpace1 *pointer)
 

Function Documentation

◆ operator<<() [1/2]

std::ostream & namespace1::operator<< ( std::ostream & os,
const MyTypeInNameSpace1 & val )

Definition at line 5244 of file gtest_unittest.cc.

5245 {
5246 return os << val.x();
5247}
os_t os

◆ operator<<() [2/2]

std::ostream & namespace1::operator<< ( std::ostream & os,
const MyTypeInNameSpace1 * pointer )

Definition at line 5248 of file gtest_unittest.cc.

5249 {
5250 return os << "(" << pointer->x() << ")";
5251}
const GenericPointer< typename T::ValueType > & pointer
Definition pointer.h:1181