-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
7,280 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/** \file | ||
* \brief Predeclaration of various PC-tree related classes and enums. | ||
* | ||
* \author Simon D. Fink <ogdf@niko.fink.bayern> | ||
* | ||
* \par License: | ||
* This file is part of the Open Graph Drawing Framework (OGDF). | ||
* | ||
* \par | ||
* Copyright (C)<br> | ||
* See README.md in the OGDF root directory for details. | ||
* | ||
* \par | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* Version 2 or 3 as published by the Free Software Foundation; | ||
* see the file LICENSE.txt included in the packaging of this file | ||
* for details. | ||
* | ||
* \par | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* \par | ||
* You should have received a copy of the GNU General Public | ||
* License along with this program; if not, see | ||
* http://www.gnu.org/copyleft/gpl.html | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "util/RegisteredArray.h" | ||
#include "util/RegisteredSet.h" | ||
#include "util/defines.h" | ||
|
||
#include <ostream> | ||
|
||
namespace pc_tree { | ||
enum class OGDF_EXPORT NodeLabel { Unknown, Partial, Full, Empty = Unknown }; | ||
|
||
enum class OGDF_EXPORT PCNodeType { PNode, CNode, Leaf }; | ||
|
||
class OGDF_EXPORT PCTree; | ||
|
||
class OGDF_EXPORT PCTreeForest; | ||
|
||
class OGDF_EXPORT PCTreeRegistry; | ||
|
||
class OGDF_EXPORT PCNode; | ||
|
||
#define OGDF_DECL_REG_ARRAY_TYPE(v, c) pc_tree::RegisteredArray<PCTreeRegistry, v, c> | ||
OGDF_DECL_REG_ARRAY(PCTreeNodeArray) | ||
#undef PCTREE_DECL_REG_ARRAY_TYPE | ||
|
||
template<bool SupportFastSizeQuery = true> | ||
using PCTreeNodeSet = pc_tree::RegisteredSet<PCTreeRegistry, SupportFastSizeQuery>; | ||
|
||
OGDF_EXPORT std::ostream& operator<<(std::ostream&, pc_tree::NodeLabel); | ||
|
||
OGDF_EXPORT std::ostream& operator<<(std::ostream&, pc_tree::PCNodeType); | ||
|
||
OGDF_EXPORT std::ostream& operator<<(std::ostream&, const pc_tree::PCTree*); | ||
|
||
OGDF_EXPORT std::ostream& operator<<(std::ostream&, const pc_tree::PCNode*); | ||
|
||
OGDF_EXPORT std::ostream& operator<<(std::ostream&, const pc_tree::PCTree&); | ||
|
||
OGDF_EXPORT std::ostream& operator<<(std::ostream&, const pc_tree::PCNode&); | ||
} |
Oops, something went wrong.