diff --git a/.gitignore b/.gitignore index 387fb9f..4408094 100644 --- a/.gitignore +++ b/.gitignore @@ -70,10 +70,6 @@ instance/ # Sphinx documentation docs/_build/ -# Doxygen documentation -docs/doxygen/ - - # PyBuilder .pybuilder/ target/ diff --git a/docs/doxygen/html/annotated.html b/docs/doxygen/html/annotated.html new file mode 100644 index 0000000..f55613a --- /dev/null +++ b/docs/doxygen/html/annotated.html @@ -0,0 +1,112 @@ + + +
+ + + + +|
+ My C++ Package
+
+ |
+
| Nmath_utils | |
| CCalculator | A simple calculator class for basic arithmetic operations |
| Nstring_utils | |
| CFormatter | A class for formatting strings |
|
+ My C++ Package
+
+ |
+
This is the complete list of members for cpppkg::Calculator, including all inherited members.
+| add(int a, int b) | cpppkg::Calculator | |
| multiply(int a, int b) | cpppkg::Calculator |
|
+ My C++ Package
+
+ |
+
A simple calculator class. + More...
+ +#include <sample.h>
+Public Member Functions | |
| int | add (int a, int b) |
| Adds two integers. | |
| int | multiply (int a, int b) |
| Multiplies two integers. | |
A simple calculator class.
+| int cpppkg::Calculator::add | +( | +int | a, | +
| + | + | int | b ) | +
Adds two integers.
+| a | First integer. |
| b | Second integer. |
| int cpppkg::Calculator::multiply | +( | +int | a, | +
| + | + | int | b ) | +
Multiplies two integers.
+| a | First integer. |
| b | Second integer. |
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
This is the complete list of members for math_utils::Calculator, including all inherited members.
+| add(double a, double b) | math_utils::Calculator | |
| divide(double a, double b) | math_utils::Calculator | |
| multiply(double a, double b) | math_utils::Calculator | |
| subtract(double a, double b) | math_utils::Calculator |
|
+ My C++ Package
+
+ |
+
A simple calculator class for basic arithmetic operations. + More...
+ +#include <math_utils.hpp>
+Public Member Functions | |
| double | add (double a, double b) |
| Add two numbers. | |
| double | subtract (double a, double b) |
| Subtract one number from another. | |
| double | multiply (double a, double b) |
| Multiply two numbers. | |
| double | divide (double a, double b) |
| Divide one number by another. | |
A simple calculator class for basic arithmetic operations.
+| double math_utils::Calculator::add | +( | +double | a, | +
| + | + | double | b ) | +
Add two numbers.
+| a | First number. |
| b | Second number. |
| double math_utils::Calculator::divide | +( | +double | a, | +
| + | + | double | b ) | +
Divide one number by another.
+| a | Numerator. |
| b | Denominator. |
| std::invalid_argument | if b is zero. |
| double math_utils::Calculator::multiply | +( | +double | a, | +
| + | + | double | b ) | +
Multiply two numbers.
+| a | First number. |
| b | Second number. |
| double math_utils::Calculator::subtract | +( | +double | a, | +
| + | + | double | b ) | +
Subtract one number from another.
+| a | First number. |
| b | Second number to subtract from the first. |
|
+ My C++ Package
+
+ |
+
This is the complete list of members for string_utils::Formatter, including all inherited members.
+| surround(const std::string &text, const std::string &symbol="*") | string_utils::Formatter |
|
+ My C++ Package
+
+ |
+
A class for formatting strings. + More...
+ +#include <string_utils.hpp>
+Public Member Functions | |
| std::string | surround (const std::string &text, const std::string &symbol="*") |
| Surround text with a given symbol. | |
A class for formatting strings.
+| std::string string_utils::Formatter::surround | +( | +const std::string & | text, | +
| + | + | const std::string & | symbol = "*" ) | +
Surround text with a given symbol.
+| text | The input string to surround. |
| symbol | The symbol to use for surrounding (default is "*"). |
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
+Files | |
| math_utils.hpp | |
| A dummy math utility module for demonstration. | |
| string_utils.hpp | |
| A dummy string utility module for demonstration. | |
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
| src | |
| cpp_pkg | |
| include | |
| math_utils.hpp | A dummy math utility module for demonstration |
| string_utils.hpp | A dummy string utility module for demonstration |
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+
|
+ My C++ Package
+
+ |
+