Indentation fixes
This commit is contained in:
parent
aa2dbbefae
commit
846199181c
|
@ -12,7 +12,7 @@
|
|||
|
||||
namespace pds {
|
||||
class Backend {
|
||||
public:
|
||||
public:
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
|
@ -45,9 +45,9 @@ namespace pds {
|
|||
* @param parserType A type of parser that could be generated by this backend
|
||||
* @return Can this backend generate this type of parser
|
||||
*/
|
||||
|
||||
|
||||
virtual bool canGenerateParser(util::ParserType parserType);
|
||||
|
||||
|
||||
/**
|
||||
* The function that gets called to generate the actual parser
|
||||
*
|
||||
|
@ -74,8 +74,7 @@ namespace pds {
|
|||
* @param templateName the template name, gets combined with `getName()`
|
||||
*/
|
||||
std::string findTemplate(std::string templateName);
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif //PARSODUS_BACKEND_H
|
||||
#endif //PARSODUS_BACKEND_H
|
||||
|
|
|
@ -6,9 +6,11 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
#include <mstch/mstch.hpp>
|
||||
|
||||
|
||||
namespace pds {
|
||||
namespace templ {
|
||||
|
||||
|
||||
/**
|
||||
* A changeable information structure for templates
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue