@@ -76,7 +76,6 @@ class GOCAD_builder
76
76
};
77
77
78
78
} // namespace internal
79
- } // namespace IO
80
79
81
80
// / \ingroup PkgBGLIoFuncsGOCAD
82
81
// /
@@ -120,14 +119,14 @@ bool read_GOCAD(std::istream& is,
120
119
Graph& g,
121
120
const CGAL_BGL_NP_CLASS& np
122
121
#ifndef DOXYGEN_RUNNING
123
- , typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
122
+ , typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
124
123
#endif
125
124
)
126
125
{
127
126
typedef typename CGAL::GetVertexPointMap<Graph, CGAL_BGL_NP_CLASS>::type VPM;
128
127
typedef typename boost::property_traits<VPM>::value_type Point ;
129
128
130
- IO:: internal::GOCAD_builder<Graph, Point > builder (is);
129
+ internal::GOCAD_builder<Graph, Point > builder (is);
131
130
if (!builder (g, np))
132
131
return false ;
133
132
@@ -141,22 +140,22 @@ bool read_GOCAD(std::istream& is,
141
140
142
141
template <typename Graph>
143
142
bool read_GOCAD (std::istream& is, std::pair<std::string, std::string>& name_and_color, Graph& g,
144
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
143
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
145
144
{
146
145
return read_GOCAD (is, name_and_color, g, parameters::all_default ());
147
146
}
148
147
149
148
template <typename Graph, typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>
150
149
bool read_GOCAD (std::istream& is, Graph& g, const CGAL_BGL_NP_CLASS& np,
151
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
150
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
152
151
{
153
152
std::pair<std::string, std::string> dummy;
154
153
return read_GOCAD (is, dummy, g, np);
155
154
}
156
155
157
156
template <typename Graph>
158
157
bool read_GOCAD (std::istream& is, Graph& g,
159
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
158
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
160
159
{
161
160
return read_GOCAD (is, g, parameters::all_default ());
162
161
}
@@ -207,7 +206,7 @@ bool read_GOCAD(const std::string& fname,
207
206
Graph& g,
208
207
const CGAL_BGL_NP_CLASS& np
209
208
#ifndef DOXYGEN_RUNNING
210
- , typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
209
+ , typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
211
210
#endif
212
211
)
213
212
{
@@ -220,22 +219,22 @@ bool read_GOCAD(const std::string& fname,
220
219
221
220
template <typename Graph>
222
221
bool read_GOCAD (const std::string& fname, std::pair<std::string, std::string>& name_and_color, Graph& g,
223
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
222
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
224
223
{
225
224
return read_GOCAD (fname, name_and_color, g, parameters::all_default ());
226
225
}
227
226
228
227
template <typename Graph, typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>
229
228
bool read_GOCAD (const std::string& fname, Graph& g, const CGAL_BGL_NP_CLASS& np,
230
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
229
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
231
230
{
232
231
std::pair<std::string, std::string> dummy;
233
232
return read_GOCAD (fname, dummy, g, np);
234
233
}
235
234
236
235
template <typename Graph>
237
236
bool read_GOCAD (const std::string& fname, Graph& g,
238
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
237
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
239
238
{
240
239
return read_GOCAD (fname, g, parameters::all_default ());
241
240
}
@@ -284,7 +283,7 @@ bool write_GOCAD(std::ostream& os,
284
283
const Graph& g,
285
284
const CGAL_BGL_NP_CLASS& np
286
285
#ifndef DOXYGEN_RUNNING
287
- , typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
286
+ , typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
288
287
#endif
289
288
)
290
289
{
@@ -346,7 +345,7 @@ bool write_GOCAD(std::ostream& os,
346
345
347
346
template <typename Graph>
348
347
bool write_GOCAD (std::ostream& os, const char * name, const Graph& g,
349
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
348
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
350
349
{
351
350
return write_GOCAD (os, name, g, parameters::all_default ());
352
351
}
@@ -391,7 +390,7 @@ bool write_GOCAD(std::ostream& os,
391
390
const Graph& g,
392
391
const CGAL_BGL_NP_CLASS& np
393
392
#ifndef DOXYGEN_RUNNING
394
- , typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
393
+ , typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
395
394
#endif
396
395
)
397
396
{
@@ -402,7 +401,7 @@ bool write_GOCAD(std::ostream& os,
402
401
403
402
template <typename Graph>
404
403
bool write_GOCAD (std::ostream& os, const Graph& g,
405
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
404
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
406
405
{
407
406
return write_GOCAD (os, g, parameters::all_default ());
408
407
}
@@ -447,7 +446,7 @@ bool write_GOCAD(const std::string& fname,
447
446
const Graph& g,
448
447
const CGAL_BGL_NP_CLASS& np
449
448
#ifndef DOXYGEN_RUNNING
450
- , typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
449
+ , typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr
451
450
#endif
452
451
)
453
452
{
@@ -461,13 +460,13 @@ bool write_GOCAD(const std::string& fname,
461
460
462
461
template <typename Graph>
463
462
bool write_GOCAD (const std::string& fname, const Graph& g,
464
- typename boost::disable_if<IO:: internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
463
+ typename boost::disable_if<internal::is_Point_set_or_Range_or_Iterator<Graph> >::type* = nullptr )
465
464
{
466
465
return write_GOCAD (fname, g, parameters::all_default ());
467
466
}
468
467
469
468
// / \endcond
470
469
471
- } // namespace CGAL
470
+ }} // namespace CGAL::IO
472
471
473
472
#endif // CGAL_BGL_IO_GOCAD_H
0 commit comments