Don't import ogdf namespace
[TortoiseGit.git] / ext / OGDF / ogdf / planarlayout / MMCBLocalStretch.h
blob922f67e4f264d49c845d661a9b98c5b386718198
1 /*
2 * $Revision: 2523 $
4 * last checkin:
5 * $Author: gutwenger $
6 * $Date: 2012-07-02 20:59:27 +0200 (Mon, 02 Jul 2012) $
7 ***************************************************************/
9 /** \file
10 * \brief Declaration of a Mixed-Model crossings beautifier
11 * that local stretching.
13 * \author Carsten Gutwenger
15 * \par License:
16 * This file is part of the Open Graph Drawing Framework (OGDF).
18 * \par
19 * Copyright (C)<br>
20 * See README.txt in the root directory of the OGDF installation for details.
22 * \par
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License
25 * Version 2 or 3 as published by the Free Software Foundation;
26 * see the file LICENSE.txt included in the packaging of this file
27 * for details.
29 * \par
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
35 * \par
36 * You should have received a copy of the GNU General Public
37 * License along with this program; if not, write to the Free
38 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
39 * Boston, MA 02110-1301, USA.
41 * \see http://www.gnu.org/copyleft/gpl.html
42 ***************************************************************/
44 #ifdef _MSC_VER
45 #pragma once
46 #endif
48 #ifndef OGDF_MMCB_LOCAL_STRETCH_H
49 #define OGDF_MMCB_LOCAL_STRETCH_H
53 #include <ogdf/planarlayout/MMCBBase.h>
56 namespace ogdf {
59 /**
60 * \brief Crossings beautifier using a local stretch strategy.
62 class OGDF_EXPORT MMCBLocalStretch : public MMCBBase
64 public:
65 //! Creates an instance of the crossings beautifier.
66 MMCBLocalStretch() { }
68 ~MMCBLocalStretch() { }
70 protected:
71 //! Implements the module call.
72 void doCall(const PlanRep &PG, GridLayout &gl, const List<node> &L);
76 } // end namespace ogdf
78 #endif