mirror of https://github.com/CGAL/cgal
Fix includes as the .h files got moved
This commit is contained in:
parent
26dd5c6f20
commit
18ebcb62f2
|
|
@ -2,22 +2,24 @@ namespace CGAL {
|
|||
/*!
|
||||
|
||||
\mainpage User Manual
|
||||
\anchor Chapter_PACKAGE_NAME
|
||||
\anchor chaptermine
|
||||
\anchor Chapter_ConeBasedSpannerss
|
||||
|
||||
\cgalAutoToc
|
||||
\author AUTHOR1, AUTHOR2
|
||||
\author Weisheng Si and Quincy Tse
|
||||
|
||||
This chapter describes the ...
|
||||
|
||||
\section secmydefinitions Definitions
|
||||
\section sec_CBS_mydefinitions Definitions
|
||||
|
||||
Section on definitions here ...
|
||||
|
||||
\section secmyexamples Examples
|
||||
\section sec_CBS_myexamples Examples
|
||||
|
||||
\subsection myFirstExample First Example
|
||||
\subsection CBS_myFirstExample First Example
|
||||
|
||||
The following example shows ...
|
||||
|
||||
\cgalExample{Cone_spanners_2/theta_io.cpp}
|
||||
|
||||
*/
|
||||
} /* namespace CGAL */
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
@INCLUDE = ${CGAL_DOC_PACKAGE_DEFAULTS}
|
||||
PROJECT_NAME = "CGAL ${CGAL_CREATED_VERSION_NUM} - Put title of project here"
|
||||
PROJECT_NAME = "CGAL ${CGAL_CREATED_VERSION_NUM} - Code-Based Spanners"
|
||||
INPUT = ${CMAKE_SOURCE_DIR}/Cone_spanners_2/doc/Cone_spanners_2/ \
|
||||
${CMAKE_SOURCE_DIR}/Cone_spanners_2/include
|
||||
|
|
|
|||
|
|
@ -1,30 +1,30 @@
|
|||
// PRETTY PACKAGE NAME should equal the project title in Doxyfile.in
|
||||
|
||||
/// \defgroup PkgPACKAGE PRETTY PACKAGE NAME Reference
|
||||
/// \defgroup PkgPACKAGEConcepts Concepts
|
||||
/// \ingroup PkgPACKAGE
|
||||
/// \defgroup PkgConeBasedSpanners Cone-Based Spanners Reference
|
||||
/// \defgroup PkgConeBasedSpannersConcepts Concepts
|
||||
/// \ingroup PkgConeBasedSpanners
|
||||
|
||||
/// \defgroup PkgPACKAGEAlgorithmClasses Algorithm Classes
|
||||
/// \ingroup PkgPACKAGE
|
||||
/// \defgroup PkgConeBasedSpannersAlgorithmClasses Algorithm Classes
|
||||
/// \ingroup PkgConeBasedSpanners
|
||||
|
||||
/// \defgroup PkgPACKAGETraitsClasses Traits Classes
|
||||
/// \ingroup PkgPACKAGE
|
||||
/// \defgroup PkgConeBasedSpannersTraitsClasses Traits Classes
|
||||
/// \ingroup PkgConeBasedSpanners
|
||||
|
||||
/// \defgroup PkgPACKAGEMiscellaneous Miscellaneous
|
||||
/// \ingroup PkgPACKAGE
|
||||
/// \defgroup PkgConeBasedSpannersMiscellaneous Miscellaneous
|
||||
/// \ingroup PkgConeBasedSpanners
|
||||
|
||||
/*!
|
||||
\addtogroup PkgPACKAGE
|
||||
\addtogroup PkgConeBasedSpanners
|
||||
\todo check generated documentation
|
||||
|
||||
\cgalPkgDescriptionBegin{PACKAGE NAME,PkgPACKAGESummary}
|
||||
\cgalPkgDescriptionBegin{Cone-Based Spanners,PkgConeBasedSpannersSummary}
|
||||
\cgalPkgPicture{pkg-small.png}
|
||||
|
||||
\cgalPkgSummaryBegin
|
||||
\cgalPkgAuthors{PACKAGE AUTHOR}
|
||||
\cgalPkgDesc{PACKAGE DESCRIPTION.
|
||||
\cgalPkgAuthors{Weisheng Si and Quincy Tse}
|
||||
\cgalPkgDesc{ConeBasedSpanners DESCRIPTION.
|
||||
The package provides ... }
|
||||
\cgalPkgManuals{Chapter_PACKAGE_NAME,PkgPACKAGE}
|
||||
\cgalPkgManuals{Chapter_ConeBasedSpanners,PkgConeBasedSpanners}
|
||||
\cgalPkgSummaryEnd
|
||||
|
||||
\cgalPkgShortInfoBegin
|
||||
|
|
|
|||
|
|
@ -28,7 +28,6 @@
|
|||
#include <fstream>
|
||||
#include <iterator>
|
||||
#include <string>
|
||||
#include <CGAL/basic.h>
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
|
|
@ -40,7 +39,7 @@
|
|||
|
||||
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
||||
|
||||
#include "Theta_graph_2.h"
|
||||
#include <CGAL/Theta_graph_2.h>
|
||||
|
||||
using namespace boost;
|
||||
|
||||
|
|
|
|||
|
|
@ -31,13 +31,11 @@
|
|||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
|
||||
#include "Theta_graph_2.h"
|
||||
#include "gnuplot_output_2.h"
|
||||
#include <CGAL/Theta_graph_2.h>
|
||||
#include <CGAL/gnuplot_output_2.h>
|
||||
|
||||
// select the kernel type
|
||||
typedef CGAL::Exact_predicates_exact_constructions_kernel_with_sqrt Kernel;
|
||||
|
|
|
|||
|
|
@ -31,14 +31,13 @@
|
|||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
#include <CGAL/basic.h>
|
||||
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
|
||||
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
|
||||
#include "Theta_graph_2.h"
|
||||
#include "gnuplot_output_2.h"
|
||||
#include <CGAL/Theta_graph_2.h>
|
||||
#include <CGAL/gnuplot_output_2.h>
|
||||
|
||||
// select the kernel type
|
||||
typedef CGAL::Exact_predicates_inexact_constructions_kernel Kernel;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
// if leda::real is used, pls modify the following definition
|
||||
#define CGAL_USE_CORE 1
|
||||
|
||||
#include "_cxx0x_hack.h"
|
||||
#include <CGAL/Cone_spanners_2/_cxx0x_hack.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
|
|
@ -47,7 +47,8 @@
|
|||
|
||||
namespace CGAL {
|
||||
|
||||
/** @brief An abstract base class for different cone-based spanner graphs with a given set of
|
||||
/** \ingroup PkgConeBasedSpanners
|
||||
* @brief An abstract base class for different cone-based spanner graphs with a given set of
|
||||
* 2D points.
|
||||
*
|
||||
* Directed,undirected and bidirectional graphs are supported. For differences among these
|
||||
|
|
|
|||
|
|
@ -28,14 +28,14 @@
|
|||
#ifndef CGAL_PLANE_SCAN_TREE_2_H
|
||||
#define CGAL_PLANE_SCAN_TREE_2_H
|
||||
|
||||
#include "_cxx0x_hack.h"
|
||||
#include <CGAL/Cone_spanners_2/_cxx0x_hack.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
#include <cstring>
|
||||
|
||||
#include "_Plane_Scan_Tree.h"
|
||||
#include <CGAL/Cone_spanners_2/_Plane_Scan_Tree.h>
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#ifndef CGAL__PLANE_SCAN_TREE_2_H
|
||||
#define CGAL__PLANE_SCAN_TREE_2_H
|
||||
|
||||
#include "_cxx0x_hack.h"
|
||||
#include <CGAL/Cone_spanners_2/_cxx0x_hack.h>
|
||||
|
||||
#include <stdexcept>
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#ifndef GNUPLOT_OUTPUT_2_H
|
||||
#define GNUPLOT_OUTPUT_2_H
|
||||
|
||||
#include "_cxx0x_hack.h"
|
||||
#include <CGAL/Cone_spanners_2/_cxx0x_hack.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#ifndef CGAL_THETA_GRAPH_2_H
|
||||
#define CGAL_THETA_GRAPH_2_H
|
||||
|
||||
#include "_cxx0x_hack.h"
|
||||
#include <CGAL/Cone_spanners_2/_cxx0x_hack.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
|
|
@ -39,8 +39,8 @@
|
|||
#include <boost/config.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
|
||||
#include "Cone_spanners_2.h"
|
||||
#include "Plane_Scan_Tree.h"
|
||||
#include <CGAL/Cone_spanners_2.h>
|
||||
#include <CGAL/Cone_spanners_2/Plane_Scan_Tree.h>
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#ifndef CGAL_YAO_GRAPH_2_H
|
||||
#define CGAL_YAO_GRAPH_2_H
|
||||
|
||||
#include "_cxx0x_hack.h"
|
||||
#include <CGAL/Cone_spanners_2/_cxx0x_hack.h>
|
||||
|
||||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
#include <boost/config.hpp>
|
||||
#include <boost/graph/adjacency_list.hpp>
|
||||
|
||||
#include "Cone_spanners_2.h"
|
||||
#include <CGAL/Cone_spanners_2.h>
|
||||
|
||||
namespace CGAL {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue