diff options
| -rw-r--r-- | src/cppc4group.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cppc4group.hpp b/src/cppc4group.hpp index 2c1f6c1..e34a267 100644 --- a/src/cppc4group.hpp +++ b/src/cppc4group.hpp @@ -9,12 +9,13 @@ // one general difference to the C-API that is not mentioned at the individual methods is that functions actually returning data return an std::optional instead of a bool... // ...the optional will be populated normally and empty in error cases -#include <memory> -#include <vector> -#include <optional> #include <cstdio> #include <functional> +#include <memory> +#include <optional> +#include <string> #include <type_traits> +#include <vector> class CppC4Group { // all C-related stuff is hidden from this header so it doesn't land in the precious C++-only code this might be used in... |
