Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조성현
/
dpc
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
조성현
2017-03-30 10:14:35 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9fa00ce9591bb3c425cc1cbe4c286dfd41b0f36b
9fa00ce9
1 parent
e8f92c23
add headers
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
dblp/dblp.vcxproj
dblp/stdafx.h
dblp/dblp.vcxproj
View file @
9fa00ce
...
...
@@ -60,15 +60,23 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath>
<LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath>
<LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath>
<LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<IncludePath>C:\boost\boost_1_63_0;$(IncludePath)</IncludePath>
<LibraryPath>C:\boost\boost_1_63_0\stage\lib;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
...
...
dblp/stdafx.h
View file @
9fa00ce
#include <QtWidgets>
#include <QtWidgets/QWidget>
#include <QFrame>
#include <QGraphicsView>
#include <QGraphicsItem>
#include <QGridLayout>
#include <QColor>
#include <QList>
#include <QMessageBox>
#include <QDebug>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/topology.hpp>
#include <boost/graph/fruchterman_reingold.hpp>
#include <boost/graph/random_layout.hpp>
#include <boost/graph/circle_layout.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/bimap.hpp>
#include <boost/regex.hpp>
#include <exception>
#include <fstream>
#include <iterator>
#include <string>
#include <map>
#include <vector>
using
namespace
boost
;
\ No newline at end of file
...
...
Please
register
or
login
to post a comment