-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShortestPath.vcxproj.filters
27 lines (27 loc) · 1.08 KB
/
ShortestPath.vcxproj.filters
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ClCompile Include="AdjacencyListGraph.cpp" />
<ClCompile Include="AdjacencyMatrixGraph.cpp" />
<ClCompile Include="GraphAlgorithms.cpp" />
<ClCompile Include="GraphEdge.cpp" />
<ClCompile Include="main.cpp" />
<ClCompile Include="minArray.cpp" />
<ClCompile Include="minHeap.cpp" />
<ClCompile Include="ProgramFlowStaticFunction.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="AbstractGraph.h" />
<ClInclude Include="AbstractPriorityQueue.h" />
<ClInclude Include="AdjacencyListGraph.h" />
<ClInclude Include="AdjacencyMatrixGraph.h" />
<ClInclude Include="ConstTypes.h" />
<ClInclude Include="DynamicArray.h" />
<ClInclude Include="DynamicList.h" />
<ClInclude Include="GraphAlgorithms.h" />
<ClInclude Include="GraphEdge.h" />
<ClInclude Include="minArray.h" />
<ClInclude Include="minHeap.h" />
<ClInclude Include="ProgramFlowStaticFunction.h" />
</ItemGroup>
</Project>