Blog/Src/BlogParser.h

10 lines
125 B
C
Raw Normal View History

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