summaryrefslogtreecommitdiffstats
path: root/lib/antlr/antlr/CommonAST.hpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit114a878c64ce6f8223cfd22d76a20eb16d177e5e (patch)
treeacaf47eb0fa12142d3896416a69e74cbf5a72242 /lib/antlr/antlr/CommonAST.hpp
downloadtdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.tar.gz
tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/antlr/antlr/CommonAST.hpp')
-rw-r--r--lib/antlr/antlr/CommonAST.hpp110
1 files changed, 110 insertions, 0 deletions
diff --git a/lib/antlr/antlr/CommonAST.hpp b/lib/antlr/antlr/CommonAST.hpp
new file mode 100644
index 00000000..091d7b6e
--- /dev/null
+++ b/lib/antlr/antlr/CommonAST.hpp
@@ -0,0 +1,110 @@
+#ifndef INC_CommonAST_hpp__
+#define INC_CommonAST_hpp__
+
+/* ANTLR Translator Generator
+ * Project led by Terence Parr at http://www.jGuru.com
+ * Software rights: http://www.antlr.org/license.html
+ *
+ * $Id$
+ */
+
+#include <antlr/config.hpp>
+#include <antlr/BaseAST.hpp>
+
+#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
+namespace antlr {
+#endif
+
+class ANTLR_API CommonAST : public BaseAST {
+public:
+ CommonAST()
+ : BaseAST()
+ , ttype( Token::INVALID_TYPE )
+ , text()
+ {
+ }
+
+ CommonAST( RefToken t )
+ : BaseAST()
+ , ttype( t->getType() )
+ , text( t->getText() )
+ {
+ }
+
+ CommonAST( const CommonAST& other )
+ : BaseAST(other)
+ , ttype(other.ttype)
+ , text(other.text)
+ {
+ }
+
+ virtual ~CommonAST()
+ {
+ }
+
+ virtual const char* typeName( void ) const
+ {
+ return CommonAST::TYPE_NAME;
+ }
+
+ /// Clone this AST node.
+ virtual RefAST clone( void ) const
+ {
+ CommonAST *ast = new CommonAST( *this );
+ return RefAST(ast);
+ }
+
+ virtual ANTLR_USE_NAMESPACE(std)string getText() const
+ {
+ return text;
+ }
+ virtual int getType() const
+ {
+ return ttype;
+ }
+
+ virtual void initialize( int t, const ANTLR_USE_NAMESPACE(std)string& txt )
+ {
+ setType(t);
+ setText(txt);
+ }
+
+ virtual void initialize( RefAST t )
+ {
+ setType(t->getType());
+ setText(t->getText());
+ }
+ virtual void initialize( RefToken t )
+ {
+ setType(t->getType());
+ setText(t->getText());
+ }
+
+#ifdef ANTLR_SUPPORT_XML
+ virtual void initialize( ANTLR_USE_NAMESPACE(std)istream& in );
+#endif
+
+ virtual void setText( const ANTLR_USE_NAMESPACE(std)string& txt )
+ {
+ text = txt;
+ }
+ virtual void setType( int type )
+ {
+ ttype = type;
+ }
+
+ static RefAST factory();
+
+ static const char* const TYPE_NAME;
+protected:
+ int ttype;
+ ANTLR_USE_NAMESPACE(std)string text;
+};
+
+typedef ASTRefCount<CommonAST> RefCommonAST;
+
+#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
+}
+#endif
+
+#endif //INC_CommonAST_hpp__