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

Go to the source code of this file.

Classes

class  Aff_transformation_2< R_ >
 

Functions

template<class R >
std::ostream & operator<< (std::ostream &os, const CGAL::Aff_transformation_2< R > &t)
 
template<class R >
std::istream & operator>> (std::istream &is, CGAL::Aff_transformation_2< R > &t)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CGAL::Aff_transformation_2< R > &  t 
)

Definition at line 238 of file Aff_transformation_2.h.

239 {
240  typedef typename R::Aff_transformation_2_base RAff_transformation_2;
241  return os << (const RAff_transformation_2&)t;
242 }
std::istream& operator>> ( std::istream &  is,
CGAL::Aff_transformation_2< R > &  t 
)

Definition at line 248 of file Aff_transformation_2.h.

249 {
250  typedef typename R::Aff_transformation_2_base RAff_transformation_2;
251  return is >> (RAff_transformation_2&)t;
252 }