kopie van
https://github.com/quitesimpleorg/qsmaddy.git
synced 2024-11-05 01:04:37 +01:00
40 regels
783 B
C
40 regels
783 B
C
|
/*
|
||
|
* This project is licensed under the MIT license. For more information see the
|
||
|
* LICENSE file.
|
||
|
*/
|
||
|
#pragma once
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
namespace maddy {
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
/**
|
||
|
* LineParser
|
||
|
*
|
||
|
* @class
|
||
|
*/
|
||
|
class LineParser
|
||
|
{
|
||
|
public:
|
||
|
/**
|
||
|
* Parse
|
||
|
*
|
||
|
* From Markdown to HTML
|
||
|
*
|
||
|
* @method
|
||
|
* @param {std::string&} line The line to interpret
|
||
|
* @return {void}
|
||
|
*/
|
||
|
virtual void Parse(std::string& line) = 0;
|
||
|
}; // class LineParser
|
||
|
|
||
|
// -----------------------------------------------------------------------------
|
||
|
|
||
|
} // namespace maddy
|