-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f234af
commit 4350e4e
Showing
4 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters