18 lines
252 B
C++
18 lines
252 B
C++
#include "BlogParser.h"
|
|
|
|
BlogParser::BlogParser()
|
|
{
|
|
|
|
}
|
|
|
|
std::string BlogParser::ParseText(std::string text)
|
|
{
|
|
std::string result;
|
|
std::string currentTag;
|
|
|
|
// for (char c : text)
|
|
// {
|
|
// if (c is first)
|
|
// }
|
|
return "";
|
|
}
|