-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #381 from StoneyDSP/documentation/versioned-modules
Documentation/versioned modules
- Loading branch information
Showing
11 changed files
with
62 additions
and
15 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
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
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 |
---|---|---|
|
@@ -52,6 +52,7 @@ jobs: | |
install: >- | ||
--needed | ||
base-devel | ||
coreutils | ||
git | ||
curl | ||
wget | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.0.1197.64336465306163 | ||
2.0.1233.37366161623664 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,42 @@ | |
#include <StoneyDSP/Core.hpp> | ||
|
||
//============================================================================== | ||
|
||
/** | ||
* @brief The `StoneyDSP` namespace. | ||
* @author Nathan J. Hood ([email protected]) | ||
* @copyright Copyright (c) 2024 | ||
* @version @PROJECT_VERSION@ | ||
* | ||
*/ | ||
namespace StoneyDSP { | ||
/** @addtogroup StoneyDSP | ||
* @{ | ||
*/ | ||
|
||
//============================================================================== | ||
|
||
/** | ||
* @brief The `StoneyVCV` namespace. | ||
* @author Nathan J. Hood ([email protected]) | ||
* @copyright Copyright (c) 2024 | ||
* @version @STONEYVCV_VERSION@ | ||
* | ||
*/ | ||
namespace StoneyVCV | ||
{ | ||
/** @addtogroup StoneyVCV | ||
* @{ | ||
*/ | ||
|
||
//============================================================================== | ||
|
||
/// @} group StoneyVCV | ||
} // namespace StoneyVCV | ||
|
||
//============================================================================== | ||
|
||
/// @} group StoneyDSP | ||
} // namespace StoneyDSP | ||
|
||
//============================================================================== |
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 |
---|---|---|
|
@@ -62,13 +62,6 @@ namespace StoneyDSP | |
|
||
//============================================================================== | ||
|
||
/** | ||
* @brief The `StoneyVCV` namespace. | ||
* @author Nathan J. Hood ([email protected]) | ||
* @copyright Copyright (c) 2024 | ||
* @version @STONEYVCV_VERSION@ | ||
* | ||
*/ | ||
namespace StoneyVCV | ||
{ | ||
/** @addtogroup StoneyVCV | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/******************************************************************************* | ||
* @file src/StoneyVCV.cpp | ||
* @author Nathan J. Hood <[email protected]> | ||
* @version 2.0.2 | ||
* @date 2024-11-11 | ||
* | ||
* @copyright Copyright (c) 2024 MIT License | ||
* | ||
******************************************************************************/ | ||
|
||
#include <StoneyVCV.hpp> | ||
|
||
//============================================================================== |