Skip to content

Commit

Permalink
Create NanaGet.Aria2..
Browse files Browse the repository at this point in the history
  • Loading branch information
MouriNaruto committed Apr 14, 2024
1 parent 9f234af commit 4350e4e
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
11 changes: 11 additions & 0 deletions NanaGet/NanaGet.Aria2.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
* PROJECT: NanaGet
* FILE: NanaGet.Aria2.cpp
* PURPOSE: Implementation for the NanaGet.Aria2
*
* LICENSE: The MIT License
*
* MAINTAINER: MouriNaruto ([email protected])
*/

#include "NanaGet.Aria2.h"
27 changes: 27 additions & 0 deletions NanaGet/NanaGet.Aria2.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*
* PROJECT: NanaGet
* FILE: NanaGet.Aria2.h
* PURPOSE: Definition for the NanaGet.Aria2
*
* LICENSE: The MIT License
*
* MAINTAINER: MouriNaruto ([email protected])
*/

#ifndef NANAGET_ARIA2
#define NANAGET_ARIA2

#if (defined(__cplusplus) && __cplusplus >= 201703L)
#elif (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L)
#else
#error "[NanaGetCore] You should use a C++ compiler with the C++17 standard."
#endif

#include <cstdint>

namespace NanaGet::Aria2
{

}

#endif // !NANAGET_ARIA2
2 changes: 2 additions & 0 deletions NanaGet/NanaGet.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<DependentUpon>AboutPage.xaml</DependentUpon>
<SubType>Code</SubType>
</ClInclude>
<ClInclude Include="NanaGet.Aria2.h" />
<ClInclude Include="NanaGetCore.h" />
<ClInclude Include="NewTaskPage.h">
<DependentUpon>NewTaskPage.xaml</DependentUpon>
Expand Down Expand Up @@ -89,6 +90,7 @@
<DependentUpon>AboutPage.xaml</DependentUpon>
<SubType>Code</SubType>
</ClCompile>
<ClCompile Include="NanaGet.Aria2.cpp" />
<ClCompile Include="NanaGetCore.cpp" />
<ClCompile Include="NewTaskPage.cpp">
<DependentUpon>NewTaskPage.xaml</DependentUpon>
Expand Down
9 changes: 9 additions & 0 deletions NanaGet/NanaGet.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<ClCompile Include="NanaGetCore.cpp">
<Filter>NanaGetCore</Filter>
</ClCompile>
<ClCompile Include="NanaGet.Aria2.cpp">
<Filter>NanaGet.Aria2</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="pch.h" />
Expand All @@ -32,6 +35,9 @@
<ClInclude Include="NanaGetResources.h">
<Filter>NanaGetResources</Filter>
</ClInclude>
<ClInclude Include="NanaGet.Aria2.h">
<Filter>NanaGet.Aria2</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="PropertySheet.props" />
Expand All @@ -46,6 +52,9 @@
<Filter Include="NanaGetResources">
<UniqueIdentifier>{127202e5-0ebb-47cb-bf8b-34f8cc717ba1}</UniqueIdentifier>
</Filter>
<Filter Include="NanaGet.Aria2">
<UniqueIdentifier>{50457ad9-e3ba-42ea-a7cc-b62c284bdda0}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="NanaGetResources.rc">
Expand Down

0 comments on commit 4350e4e

Please sign in to comment.