CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
Sym.cc File Reference
#include "Sym.h"
#include <ostream>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &ost, const Sym &s)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  ost,
const Sym s 
)

Definition at line 7 of file Sym.cc.

References Sym::addr_, Sym::id_, and Sym::name_.

8 {
9  ost << s.id_ << " " << s.addr_ << " " << s.name_;
10  return ost;
11 }
std::string name_
Definition: Sym.h:33
address_type addr_
Definition: Sym.h:36
int id_
Definition: Sym.h:35