Showing
2 changed files
with
36 additions
and
0 deletions
| ... | @@ -60,15 +60,23 @@ | ... | @@ -60,15 +60,23 @@ |
| 60 | </PropertyGroup> | 60 | </PropertyGroup> |
| 61 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | 61 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 62 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> | 62 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> |
| 63 | + <IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath> | ||
| 64 | + <LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath> | ||
| 63 | </PropertyGroup> | 65 | </PropertyGroup> |
| 64 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> | 66 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
| 65 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> | 67 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> |
| 68 | + <IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath> | ||
| 69 | + <LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath> | ||
| 66 | </PropertyGroup> | 70 | </PropertyGroup> |
| 67 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | 71 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 68 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> | 72 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> |
| 73 | + <IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath> | ||
| 74 | + <LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath> | ||
| 69 | </PropertyGroup> | 75 | </PropertyGroup> |
| 70 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> | 76 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
| 71 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> | 77 | <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir> |
| 78 | + <IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath> | ||
| 79 | + <LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath> | ||
| 72 | </PropertyGroup> | 80 | </PropertyGroup> |
| 73 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | 81 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 74 | <ClCompile> | 82 | <ClCompile> | ... | ... |
| 1 | #include <QtWidgets> | 1 | #include <QtWidgets> |
| 2 | +#include <QtWidgets/QWidget> | ||
| 3 | +#include <QFrame> | ||
| 4 | +#include <QGraphicsView> | ||
| 5 | +#include <QGraphicsItem> | ||
| 6 | +#include <QGridLayout> | ||
| 7 | +#include <QColor> | ||
| 8 | +#include <QList> | ||
| 9 | +#include <QMessageBox> | ||
| 10 | +#include <QDebug> | ||
| 11 | + | ||
| 12 | +#include <boost/graph/adjacency_list.hpp> | ||
| 13 | +#include <boost/graph/topology.hpp> | ||
| 14 | +#include <boost/graph/fruchterman_reingold.hpp> | ||
| 15 | +#include <boost/graph/random_layout.hpp> | ||
| 16 | +#include <boost/graph/circle_layout.hpp> | ||
| 17 | +#include <boost/graph/graph_traits.hpp> | ||
| 18 | +#include <boost/algorithm/string.hpp> | ||
| 19 | +#include <boost/bimap.hpp> | ||
| 20 | +#include <boost/regex.hpp> | ||
| 21 | + | ||
| 22 | +#include <exception> | ||
| 23 | +#include <fstream> | ||
| 24 | +#include <iterator> | ||
| 25 | +#include <string> | ||
| 26 | +#include <map> | ||
| 27 | +#include <vector> | ||
| 28 | + | ||
| 29 | +using namespace boost; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment