mirror of https://github.com/CGAL/cgal
32 lines
772 B
Plaintext
32 lines
772 B
Plaintext
/// The main CGAL namespace. All \cgal templates, classes and function
|
|
/// reside here or in a subnamespace.
|
|
namespace CGAL {
|
|
}
|
|
|
|
class Assignable {};
|
|
class DefaultConstructible {};
|
|
class CopyConstructible {};
|
|
class EqualityComparable {};
|
|
class LessThanComparable {};
|
|
class AdaptableFunctor {};
|
|
class AdaptableUnaryFunction {};
|
|
class AdaptableBinaryFunction {};
|
|
|
|
class Iterator {};
|
|
class OutputIterator {};
|
|
class InputIterator {};
|
|
class ForwardIterator {};
|
|
class RandomAccessIterator {};
|
|
class BidirectionalIterator {};
|
|
|
|
|
|
class RandomAccessContainer {};
|
|
class BackInsertionSequence {};
|
|
|
|
/*!
|
|
This specifies that the actual type exposed through a `typedef` is
|
|
implementation specific. It can only be treated through the concepts
|
|
it is said to model.
|
|
*/
|
|
class Hidden_type {};
|