proxygen
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

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

Definition at line 5211 of file gtest_unittest.cc.

5212  {
5213  return os << val.x();
5214 }
double val
Definition: String.cpp:273
std::ostream & namespace1::operator<< ( std::ostream &  os,
const MyTypeInNameSpace1 pointer 
)

Definition at line 5215 of file gtest_unittest.cc.

5216  {
5217  return os << "(" << pointer->x() << ")";
5218 }