Blog/Src/BlogParser.h
2023-09-15 13:00:49 +01:00

9 lines
125 B
C++

#pragma once
#include <string>
class BlogParser
{
public:
BlogParser();
std::string ParseText(std::string text);
};