mirror of https://github.com/CGAL/cgal
69 lines
2.1 KiB
C++
69 lines
2.1 KiB
C++
// ============================================================================
|
|
//
|
|
// Copyright (c) 1997 The CGAL Consortium
|
|
//
|
|
// This software and related documentation is part of an INTERNAL release
|
|
// of the Computational Geometry Algorithms Library (CGAL). It is not
|
|
// intended for general use.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// release : $CGAL_Revision: $
|
|
// release_date : $CGAL_Date: $
|
|
//
|
|
// file : include/CGAL/IO/Polyhedron_iostream.h
|
|
// package : Polyhedron_IO 2.11 (04 Feb 2000)
|
|
// chapter : Support Library
|
|
//
|
|
// revision : $Revision$
|
|
// revision_date : $Date$
|
|
//
|
|
// author(s) : Lutz Kettner <kettner@mpi-sb.mpg.de>
|
|
// maintainer :
|
|
// coordinator : INRIA, Sophia Antipolis
|
|
//
|
|
// Stream operators for Polyhedron_3 IO in object file format (OFF)
|
|
// ============================================================================
|
|
|
|
#ifndef CGAL_IO_POLYHEDRON_IOSTREAM_H
|
|
#define CGAL_IO_POLYHEDRON_IOSTREAM_H 1
|
|
|
|
#include <CGAL/Polyhedron_3.h>
|
|
#include <CGAL/IO/print_OFF.h>
|
|
#include <CGAL/IO/scan_OFF.h>
|
|
#include <iostream>
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template < class Traits,
|
|
class Items,
|
|
#ifndef CGAL_CFG_NO_TMPL_IN_TMPL_PARAM
|
|
template < class T, class I, class A>
|
|
#endif
|
|
class HDS, class Alloc>
|
|
std::ostream&
|
|
operator<<( std::ostream& out, const Polyhedron_3<Traits,Items,HDS,Alloc>& P) {
|
|
// writes P to `out' in PRETTY, ASCII or BINARY format
|
|
// as the stream indicates.
|
|
File_header_OFF header( is_binary( out), ! is_pretty( out), false);
|
|
CGAL::print_polyhedron_with_header_OFF( out, P, header);
|
|
return out;
|
|
}
|
|
|
|
template < class Traits,
|
|
class Items,
|
|
#ifndef CGAL_CFG_NO_TMPL_IN_TMPL_PARAM
|
|
template < class T, class I, class A>
|
|
#endif
|
|
class HDS, class Alloc>
|
|
std::istream& operator>>(std::istream& in,
|
|
Polyhedron_3<Traits,Items,HDS,Alloc>& P) {
|
|
// reads a polyhedron from `in' and appends it to P.
|
|
CGAL::scan_OFF( in, P);
|
|
return in;
|
|
}
|
|
|
|
CGAL_END_NAMESPACE
|
|
#endif // CGAL_IO_POLYHEDRON_IOSTREAM_H //
|
|
// EOF //
|