19 lines
252 B
C++
19 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 "";
|
||
|
}
|