File: basic.h

package info (click to toggle)
cgal 3.6.1-2
  • links: PTS
  • area: non-free
  • in suites: squeeze
  • size: 62,184 kB
  • ctags: 95,782
  • sloc: cpp: 453,758; ansic: 96,821; sh: 226; makefile: 120; xml: 2
file content (34 lines) | stat: -rw-r--r-- 620 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef CGAL_PDB_BASIC_H
#define CGAL_PDB_BASIC_H
#include <CGAL/basic.h>
#include <CGAL/auto_link/PDB.h>
#include <CGAL/Tools/utility_macros.h>
#include <CGAL/Tools/Log.h>


#include <boost/version.hpp>
#if BOOST_VERSION < 103400
#include <CGAL/PDB/internal/foreach.h>
#else
#include <boost/foreach.hpp>
#define CGAL_PDB_FOREACH(a,b) BOOST_FOREACH(a,b)
#endif

namespace CGAL {
//! All exposed classes are put in this namespace.
namespace PDB {
}
}


namespace internal {
  template <class T>
  struct EchoType {
    typedef T type;
  };
  template <class T>
  EchoType<T> get_type(T){return EchoType<T>();}
}


#endif