From 7d4f47bd0bf7544dbd7f64ed4089e80780c1d2bd Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 16 Dec 2020 17:43:36 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro --- poxml/antlr/src/ANTLRException.cpp | 2 +- poxml/antlr/src/ASTFactory.cpp | 4 ++-- poxml/antlr/src/ASTRefCount.cpp | 4 ++-- poxml/antlr/src/BaseAST.cpp | 2 +- poxml/antlr/src/BitSet.cpp | 2 +- poxml/antlr/src/CharBuffer.cpp | 2 +- poxml/antlr/src/CharScanner.cpp | 6 +++--- poxml/antlr/src/CommonAST.cpp | 4 ++-- poxml/antlr/src/CommonASTWithHiddenTokens.cpp | 6 +++--- poxml/antlr/src/CommonHiddenStreamToken.cpp | 2 +- poxml/antlr/src/CommonToken.cpp | 4 ++-- poxml/antlr/src/InputBuffer.cpp | 2 +- poxml/antlr/src/LLkParser.cpp | 2 +- poxml/antlr/src/LexerSharedInputState.cpp | 4 ++-- poxml/antlr/src/MismatchedCharException.cpp | 4 ++-- poxml/antlr/src/MismatchedTokenException.cpp | 4 ++-- poxml/antlr/src/NoViableAltException.cpp | 4 ++-- poxml/antlr/src/NoViableAltForCharException.cpp | 4 ++-- poxml/antlr/src/Parser.cpp | 10 +++++----- poxml/antlr/src/ParserSharedInputState.cpp | 2 +- poxml/antlr/src/RecognitionException.cpp | 4 ++-- poxml/antlr/src/String.cpp | 2 +- poxml/antlr/src/Token.cpp | 4 ++-- poxml/antlr/src/TokenBuffer.cpp | 2 +- poxml/antlr/src/TokenStreamBasicFilter.cpp | 2 +- poxml/antlr/src/TokenStreamHiddenTokenFilter.cpp | 4 ++-- poxml/antlr/src/TokenStreamSelector.cpp | 4 ++-- poxml/antlr/src/TreeParser.cpp | 6 +++--- poxml/antlr/src/TreeParserSharedInputState.cpp | 2 +- 29 files changed, 52 insertions(+), 52 deletions(-) (limited to 'poxml/antlr/src') diff --git a/poxml/antlr/src/ANTLRException.cpp b/poxml/antlr/src/ANTLRException.cpp index 42632e71..5b2dc93c 100644 --- a/poxml/antlr/src/ANTLRException.cpp +++ b/poxml/antlr/src/ANTLRException.cpp @@ -30,7 +30,7 @@ * @author
Pete Wells */ -#include "antlr/ANTLRException.hpp" +#include "antlr/ANTLRException.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/ASTFactory.cpp b/poxml/antlr/src/ASTFactory.cpp index e44386f7..fbe717fd 100644 --- a/poxml/antlr/src/ASTFactory.cpp +++ b/poxml/antlr/src/ASTFactory.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/ASTFactory.hpp" -#include "antlr/CommonAST.hpp" +#include "antlr/ASTFactory.h" +#include "antlr/CommonAST.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/ASTRefCount.cpp b/poxml/antlr/src/ASTRefCount.cpp index 1da98306..2498d759 100644 --- a/poxml/antlr/src/ASTRefCount.cpp +++ b/poxml/antlr/src/ASTRefCount.cpp @@ -1,5 +1,5 @@ -#include "antlr/ASTRefCount.hpp" -#include "antlr/AST.hpp" +#include "antlr/ASTRefCount.h" +#include "antlr/AST.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/BaseAST.cpp b/poxml/antlr/src/BaseAST.cpp index 4080e0e8..ddb129ef 100644 --- a/poxml/antlr/src/BaseAST.cpp +++ b/poxml/antlr/src/BaseAST.cpp @@ -30,7 +30,7 @@ * @author
Pete Wells */ -#include "antlr/BaseAST.hpp" +#include "antlr/BaseAST.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/BitSet.cpp b/poxml/antlr/src/BitSet.cpp index 69e70a68..32750009 100644 --- a/poxml/antlr/src/BitSet.cpp +++ b/poxml/antlr/src/BitSet.cpp @@ -1,4 +1,4 @@ -#include "antlr/BitSet.hpp" +#include "antlr/BitSet.h" #include ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/CharBuffer.cpp b/poxml/antlr/src/CharBuffer.cpp index a43eb153..312af533 100644 --- a/poxml/antlr/src/CharBuffer.cpp +++ b/poxml/antlr/src/CharBuffer.cpp @@ -43,7 +43,7 @@ * @see antlr.CharQueue */ -#include "antlr/CharBuffer.hpp" +#include "antlr/CharBuffer.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/CharScanner.cpp b/poxml/antlr/src/CharScanner.cpp index ff40138d..8374651e 100644 --- a/poxml/antlr/src/CharScanner.cpp +++ b/poxml/antlr/src/CharScanner.cpp @@ -30,9 +30,9 @@ * @author
Pete Wells */ -#include "antlr/CharScanner.hpp" -#include "antlr/CommonToken.hpp" -#include "antlr/MismatchedCharException.hpp" +#include "antlr/CharScanner.h" +#include "antlr/CommonToken.h" +#include "antlr/MismatchedCharException.h" #include #ifdef HAS_NOT_CCTYPE_H diff --git a/poxml/antlr/src/CommonAST.cpp b/poxml/antlr/src/CommonAST.cpp index 3a4067e3..0204b452 100644 --- a/poxml/antlr/src/CommonAST.cpp +++ b/poxml/antlr/src/CommonAST.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/config.hpp" -#include "antlr/CommonAST.hpp" +#include "antlr/config.h" +#include "antlr/CommonAST.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/CommonASTWithHiddenTokens.cpp b/poxml/antlr/src/CommonASTWithHiddenTokens.cpp index d6c242d2..6b0213fe 100644 --- a/poxml/antlr/src/CommonASTWithHiddenTokens.cpp +++ b/poxml/antlr/src/CommonASTWithHiddenTokens.cpp @@ -1,6 +1,6 @@ -#include "antlr/config.hpp" -#include "antlr/CommonASTWithHiddenTokens.hpp" -#include "antlr/CommonHiddenStreamToken.hpp" +#include "antlr/config.h" +#include "antlr/CommonASTWithHiddenTokens.h" +#include "antlr/CommonHiddenStreamToken.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/CommonHiddenStreamToken.cpp b/poxml/antlr/src/CommonHiddenStreamToken.cpp index d33927cc..ea3ab8e9 100644 --- a/poxml/antlr/src/CommonHiddenStreamToken.cpp +++ b/poxml/antlr/src/CommonHiddenStreamToken.cpp @@ -1,4 +1,4 @@ -#include "antlr/CommonHiddenStreamToken.hpp" +#include "antlr/CommonHiddenStreamToken.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/CommonToken.cpp b/poxml/antlr/src/CommonToken.cpp index ff60bd79..262536ca 100644 --- a/poxml/antlr/src/CommonToken.cpp +++ b/poxml/antlr/src/CommonToken.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/CommonToken.hpp" -#include "antlr/String.hpp" +#include "antlr/CommonToken.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/InputBuffer.cpp b/poxml/antlr/src/InputBuffer.cpp index 058c32ab..3eb6732b 100644 --- a/poxml/antlr/src/InputBuffer.cpp +++ b/poxml/antlr/src/InputBuffer.cpp @@ -43,7 +43,7 @@ * @see antlr.CharQueue */ -#include "antlr/InputBuffer.hpp" +#include "antlr/InputBuffer.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/LLkParser.cpp b/poxml/antlr/src/LLkParser.cpp index 2f21cd8b..647d6562 100644 --- a/poxml/antlr/src/LLkParser.cpp +++ b/poxml/antlr/src/LLkParser.cpp @@ -30,7 +30,7 @@ * @author
Pete Wells */ -#include "antlr/LLkParser.hpp" +#include "antlr/LLkParser.h" #include ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/LexerSharedInputState.cpp b/poxml/antlr/src/LexerSharedInputState.cpp index a95f33a8..3099a839 100644 --- a/poxml/antlr/src/LexerSharedInputState.cpp +++ b/poxml/antlr/src/LexerSharedInputState.cpp @@ -1,5 +1,5 @@ -#include "antlr/LexerSharedInputState.hpp" -#include "antlr/CharBuffer.hpp" +#include "antlr/LexerSharedInputState.h" +#include "antlr/CharBuffer.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/MismatchedCharException.cpp b/poxml/antlr/src/MismatchedCharException.cpp index 4dede0e8..06e730d0 100644 --- a/poxml/antlr/src/MismatchedCharException.cpp +++ b/poxml/antlr/src/MismatchedCharException.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/MismatchedCharException.hpp" -#include "antlr/String.hpp" +#include "antlr/MismatchedCharException.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/MismatchedTokenException.cpp b/poxml/antlr/src/MismatchedTokenException.cpp index b8b10808..1ac2f9cb 100644 --- a/poxml/antlr/src/MismatchedTokenException.cpp +++ b/poxml/antlr/src/MismatchedTokenException.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/MismatchedTokenException.hpp" -#include "antlr/String.hpp" +#include "antlr/MismatchedTokenException.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/NoViableAltException.cpp b/poxml/antlr/src/NoViableAltException.cpp index 433f4325..46fcbd08 100644 --- a/poxml/antlr/src/NoViableAltException.cpp +++ b/poxml/antlr/src/NoViableAltException.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/NoViableAltException.hpp" -#include "antlr/String.hpp" +#include "antlr/NoViableAltException.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/NoViableAltForCharException.cpp b/poxml/antlr/src/NoViableAltForCharException.cpp index 2ff9120f..9765da58 100644 --- a/poxml/antlr/src/NoViableAltForCharException.cpp +++ b/poxml/antlr/src/NoViableAltForCharException.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/NoViableAltForCharException.hpp" -#include "antlr/String.hpp" +#include "antlr/NoViableAltForCharException.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/Parser.cpp b/poxml/antlr/src/Parser.cpp index 5a0388d4..115bf228 100644 --- a/poxml/antlr/src/Parser.cpp +++ b/poxml/antlr/src/Parser.cpp @@ -30,12 +30,12 @@ * @author
Pete Wells */ -#include "antlr/Parser.hpp" +#include "antlr/Parser.h" -#include "antlr/BitSet.hpp" -#include "antlr/TokenBuffer.hpp" -#include "antlr/MismatchedTokenException.hpp" -//#include "antlr/ASTFactory.hpp" +#include "antlr/BitSet.h" +#include "antlr/TokenBuffer.h" +#include "antlr/MismatchedTokenException.h" +//#include "antlr/ASTFactory.h" #include #include diff --git a/poxml/antlr/src/ParserSharedInputState.cpp b/poxml/antlr/src/ParserSharedInputState.cpp index 102aba87..1f70f5ef 100644 --- a/poxml/antlr/src/ParserSharedInputState.cpp +++ b/poxml/antlr/src/ParserSharedInputState.cpp @@ -1,4 +1,4 @@ -#include "antlr/ParserSharedInputState.hpp" +#include "antlr/ParserSharedInputState.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/RecognitionException.cpp b/poxml/antlr/src/RecognitionException.cpp index 1d1bd53d..cd1c9fd1 100644 --- a/poxml/antlr/src/RecognitionException.cpp +++ b/poxml/antlr/src/RecognitionException.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/RecognitionException.hpp" -#include "antlr/String.hpp" +#include "antlr/RecognitionException.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/String.cpp b/poxml/antlr/src/String.cpp index 6d9df7a5..79d8cd27 100644 --- a/poxml/antlr/src/String.cpp +++ b/poxml/antlr/src/String.cpp @@ -30,7 +30,7 @@ * @author
Pete Wells */ -#include "antlr/String.hpp" +#include "antlr/String.h" #ifdef HAS_NOT_CSTDIO_H #include diff --git a/poxml/antlr/src/Token.cpp b/poxml/antlr/src/Token.cpp index f307774f..2da6c313 100644 --- a/poxml/antlr/src/Token.cpp +++ b/poxml/antlr/src/Token.cpp @@ -30,8 +30,8 @@ * @author
Pete Wells */ -#include "antlr/Token.hpp" -#include "antlr/String.hpp" +#include "antlr/Token.h" +#include "antlr/String.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/TokenBuffer.cpp b/poxml/antlr/src/TokenBuffer.cpp index ded5df9b..312d14a2 100644 --- a/poxml/antlr/src/TokenBuffer.cpp +++ b/poxml/antlr/src/TokenBuffer.cpp @@ -30,7 +30,7 @@ * @author
Pete Wells */ -#include "antlr/TokenBuffer.hpp" +#include "antlr/TokenBuffer.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/TokenStreamBasicFilter.cpp b/poxml/antlr/src/TokenStreamBasicFilter.cpp index 71257f46..c2bfcdcf 100644 --- a/poxml/antlr/src/TokenStreamBasicFilter.cpp +++ b/poxml/antlr/src/TokenStreamBasicFilter.cpp @@ -1,4 +1,4 @@ -#include "antlr/TokenStreamBasicFilter.hpp" +#include "antlr/TokenStreamBasicFilter.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/TokenStreamHiddenTokenFilter.cpp b/poxml/antlr/src/TokenStreamHiddenTokenFilter.cpp index 827ca382..72af82cb 100644 --- a/poxml/antlr/src/TokenStreamHiddenTokenFilter.cpp +++ b/poxml/antlr/src/TokenStreamHiddenTokenFilter.cpp @@ -1,5 +1,5 @@ -#include "antlr/TokenStreamHiddenTokenFilter.hpp" -#include "antlr/CommonHiddenStreamToken.hpp" +#include "antlr/TokenStreamHiddenTokenFilter.h" +#include "antlr/CommonHiddenStreamToken.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/TokenStreamSelector.cpp b/poxml/antlr/src/TokenStreamSelector.cpp index 2e6527a8..073a8f44 100644 --- a/poxml/antlr/src/TokenStreamSelector.cpp +++ b/poxml/antlr/src/TokenStreamSelector.cpp @@ -1,5 +1,5 @@ -#include "antlr/TokenStreamSelector.hpp" -#include "antlr/TokenStreamRetryException.hpp" +#include "antlr/TokenStreamSelector.h" +#include "antlr/TokenStreamRetryException.h" ANTLR_BEGIN_NAMESPACE(antlr) diff --git a/poxml/antlr/src/TreeParser.cpp b/poxml/antlr/src/TreeParser.cpp index 6d302737..1e83bd77 100644 --- a/poxml/antlr/src/TreeParser.cpp +++ b/poxml/antlr/src/TreeParser.cpp @@ -29,9 +29,9 @@ * @author
John Lilley, Empathy Software * @author
Pete Wells */ -#include "antlr/TreeParser.hpp" -#include "antlr/ASTNULLType.hpp" -#include "antlr/MismatchedTokenException.hpp" +#include "antlr/TreeParser.h" +#include "antlr/ASTNULLType.h" +#include "antlr/MismatchedTokenException.h" #include #include diff --git a/poxml/antlr/src/TreeParserSharedInputState.cpp b/poxml/antlr/src/TreeParserSharedInputState.cpp index 89f1d5dc..be7adebb 100644 --- a/poxml/antlr/src/TreeParserSharedInputState.cpp +++ b/poxml/antlr/src/TreeParserSharedInputState.cpp @@ -1,4 +1,4 @@ -#include "antlr/TreeParserSharedInputState.hpp" +#include "antlr/TreeParserSharedInputState.h" ANTLR_BEGIN_NAMESPACE(antlr) -- cgit v1.2.1