*** empty log message ***

This commit is contained in:
Matthias Bäsken 2003-01-09 12:44:39 +00:00
parent 56b710d5fe
commit f38c8e9f94
3 changed files with 19 additions and 10 deletions

View File

@ -10,7 +10,7 @@
// release :
// release_date :
//
// file : Test_kernel.h
// file : Kernel_archetype.h
// package : Kernel_23
// maintainer :
// revision : $Revision$
@ -141,7 +141,8 @@ public:
// functors and access functions ...
// predicate ...
#define CGAL_Kernel_pred(Y,Z) typedef CGALca::Y<Kernel_archetype> Y; Y Z() const {return Y();}
#define CGAL_Kernel_pred(Y,Z) typedef CGALca::Y<Kernel_archetype> Y; \
Y Z() const {return Y();}
// accessor function ...
#define CGAL_Kernel_cons(Y,Z) CGAL_Kernel_pred(Y,Z)

View File

@ -82,10 +82,12 @@ struct Test_point_2 {
};
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
inline bool operator==(const Test_point_2& obj1, const Test_point_2& obj2)
inline bool operator==(const Test_point_2& obj1,
const Test_point_2& obj2)
{ return true; }
inline bool operator!=(const Test_point_2& obj1, const Test_point_2& obj2)
inline bool operator!=(const Test_point_2& obj1,
const Test_point_2& obj2)
{ return true; }
#endif
@ -177,10 +179,12 @@ struct Test_direction_2 {
};
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
inline bool operator==(const Test_direction_2& obj1, const Test_direction_2& obj2)
inline bool operator==(const Test_direction_2& obj1,
const Test_direction_2& obj2)
{ return true; }
inline bool operator!=(const Test_direction_2& obj1, const Test_direction_2& obj2)
inline bool operator!=(const Test_direction_2& obj1,
const Test_direction_2& obj2)
{ return true; }
#endif
@ -196,10 +200,12 @@ struct Test_triangle_2 {
};
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
inline bool operator==(const Test_triangle_2& obj1, const Test_triangle_2& obj2)
inline bool operator==(const Test_triangle_2& obj1,
const Test_triangle_2& obj2)
{ return true; }
inline bool operator!=(const Test_triangle_2& obj1, const Test_triangle_2& obj2)
inline bool operator!=(const Test_triangle_2& obj1,
const Test_triangle_2& obj2)
{ return true; }
#endif

View File

@ -224,10 +224,12 @@ struct Test_triangle_3 {
};
#if defined(CGAL_CONCEPT_ARCHETYPE_ALLOW_COMPARISONS)
inline bool operator==(const Test_triangle_3& obj1, const Test_triangle_3& obj2)
inline bool operator==(const Test_triangle_3& obj1,
const Test_triangle_3& obj2)
{ return true; }
inline bool operator!=(const Test_triangle_3& obj1, const Test_triangle_3& obj2)
inline bool operator!=(const Test_triangle_3& obj1,
const Test_triangle_3& obj2)
{ return true; }
#endif