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

Go to the source code of this file.

Classes

class  Direction_2< R, T >
 

Functions

template<class R >
std::ostream & operator<< (std::ostream &os, const Direction_2< R > &d)
 
template<class R >
std::istream & operator>> (std::istream &is, Direction_2< R > &p)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Direction_2< R > &  d 
)

Definition at line 175 of file Direction_2.h.

References d.

176 {
177  typedef typename R::Direction_2_base RDirection_2;
178  return os << (const RDirection_2&)d;
179 }
std::istream& operator>> ( std::istream &  is,
Direction_2< R > &  p 
)

Definition at line 186 of file Direction_2.h.

187 {
188  typedef typename R::Direction_2_base RDirection_2;
189  return is >> (RDirection_2&)p;
190 }