Billinghistory Categories

This commit is contained in:
StanislausCichocki
2025-03-13 15:38:10 +01:00
parent 04c16b63ce
commit 86b255a140
8 changed files with 92 additions and 15 deletions

View File

@ -0,0 +1,17 @@
//
// Created by StanislausCichocki on 13.03.2025.
//
#ifndef STRINGOPERATIONS_H
#define STRINGOPERATIONS_H
#include <string>
class StringOperations {
public:
static void splitString(const std::string &input, const std::string &delimiter, std::string &before, std::string &after);
};
#endif //STRINGOPERATIONS_H