-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathRPLayoutAlgorithm.cpp
30 lines (22 loc) · 1.01 KB
/
RPLayoutAlgorithm.cpp
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
/*
==============================================================================
RPLayoutAlgorithm.cpp
Copyright © 2016, 2017, 2018 G. Brinkmann
This file is part of graph_viewer.
graph_viewer is free software: you can redistribute it and/or modify
it under the terms of version 3 of the GNU Affero General Public License as
published by the Free Software Foundation.
graph_viewer 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with graph_viewer. If not, see <https://www.gnu.org/licenses/>.
==============================================================================
*/
#include "RPLayoutAlgorithm.hpp"
namespace RPGraph
{
LayoutAlgorithm::LayoutAlgorithm(GraphLayout &layout): layout(layout){}
LayoutAlgorithm::~LayoutAlgorithm(){}
}