Blog/Component.h

11 lines
145 B
C
Raw Normal View History

#pragma once
class Component
{
public:
char startIdentifier;
char endIdentifier;
virtual std::string generateHTML(std::string markDown);
};