ClickHouse/dbms/include/DB/Parsers/IAST.h
2010-06-24 19:12:10 +00:00

34 lines
686 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef DBMS_PARSERS_IAST_H
#define DBMS_PARSERS_IAST_H
#include <list>
#include <Poco/SharedPtr.h>
#include <DB/Core/Types.h>
#include <DB/Parsers/StringRange.h>
namespace DB
{
using Poco::SharedPtr;
/** Элемент синтаксического дерева (в дальнейшем - направленного ациклического графа с элементами семантики)
*/
class IAST
{
public:
/** Получить кусок текста, откуда был получен этот элемент. */
virtual StringRange getRange() = 0;
virtual ~IAST() {}
};
typedef Poco::SharedPtr<IAST> ASTPtr;
typedef std::list<ASTPtr> ASTs;
}
#endif