Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Segment_2.h File Reference
#include <CGAL/Line_2.h>
Include dependency graph for Segment_2.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Segment_2< R, T >
 

Functions

template<class R >
std::ostream & operator<< (std::ostream &os, const Segment_2< R > &s)
 
template<class R >
std::istream & operator>> (std::istream &is, Segment_2< R > &s)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Segment_2< R > &  s 
)

Definition at line 187 of file Segment_2.h.

References s.

188 {
189  typedef typename R::Segment_2_base RSegment_2;
190  return os << (const RSegment_2&)s;
191 }
std::istream& operator>> ( std::istream &  is,
Segment_2< R > &  s 
)

Definition at line 197 of file Segment_2.h.

198 {
199  typedef typename R::Segment_2_base RSegment_2;
200  return is >> (RSegment_2&)s;
201 }