18 lines
321 B
C++
18 lines
321 B
C++
//
|
|
// 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
|