From 846199181c599483e49c75c2cb0054366eca0597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Wed, 11 Jan 2017 18:43:25 +0100 Subject: [PATCH] Indentation fixes --- include/Parsodus/backend.h | 9 ++++----- include/Parsodus/template.h | 4 +++- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/include/Parsodus/backend.h b/include/Parsodus/backend.h index 0b20c5a..43163fd 100644 --- a/include/Parsodus/backend.h +++ b/include/Parsodus/backend.h @@ -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 diff --git a/include/Parsodus/template.h b/include/Parsodus/template.h index 3ba1828..b0bbf41 100644 --- a/include/Parsodus/template.h +++ b/include/Parsodus/template.h @@ -6,9 +6,11 @@ #include #include #include - + namespace pds { namespace templ { + + /** * A changeable information structure for templates */