Missing exports

This commit is contained in:
Laurent Rineau 2011-10-18 16:46:54 +00:00
parent 4b135885d0
commit cabc943d53
2 changed files with 7 additions and 5 deletions

View File

@ -31,6 +31,8 @@
#include <CGAL/IO/Color.h> #include <CGAL/IO/Color.h>
#include <CGAL/IO/Ostream_iterator.h> #include <CGAL/IO/Ostream_iterator.h>
#include <CGAL/export/CGAL.h>
#include <map> #include <map>
#include <vector> #include <vector>
#include <utility> #include <utility>
@ -40,7 +42,7 @@
namespace CGAL { namespace CGAL {
class Geomview_stream { class CGAL_EXPORT Geomview_stream {
public: public:
Geomview_stream(const Bbox_3 &bbox = Bbox_3(0,0,0, 1,1,1), Geomview_stream(const Bbox_3 &bbox = Bbox_3(0,0,0, 1,1,1),
const char *machine = NULL, const char *machine = NULL,
@ -549,10 +551,10 @@ operator<<(Geomview_stream &gv, const Line_3<R> &r)
} }
#endif #endif
Geomview_stream& CGAL_EXPORT Geomview_stream&
operator<<(Geomview_stream &gv, const Bbox_2 &bbox); operator<<(Geomview_stream &gv, const Bbox_2 &bbox);
Geomview_stream& CGAL_EXPORT Geomview_stream&
operator<<(Geomview_stream &gv, const Bbox_3 &bbox); operator<<(Geomview_stream &gv, const Bbox_3 &bbox);
#if defined CGAL_POINT_3_H && !defined CGAL_GV_IN_POINT_3_H #if defined CGAL_POINT_3_H && !defined CGAL_GV_IN_POINT_3_H

View File

@ -110,10 +110,10 @@ public:
}; };
// Write header. // Write header.
std::ostream& operator<<( std::ostream& out, const File_header_OFF& h); CGAL_EXPORT std::ostream& operator<<( std::ostream& out, const File_header_OFF& h);
// Scan header. Marks streams badbit if not in SKEL format nor in OFF. // Scan header. Marks streams badbit if not in SKEL format nor in OFF.
std::istream& operator>>( std::istream& in, File_header_OFF& h); CGAL_EXPORT std::istream& operator>>( std::istream& in, File_header_OFF& h);
} //namespace CGAL } //namespace CGAL
#endif // CGAL_IO_FILE_HEADER_OFF_H // #endif // CGAL_IO_FILE_HEADER_OFF_H //