Made the Bind constructor protected.

This commit is contained in:
Roberto Raggi
2010-02-01 16:39:32 +01:00
parent 945c211996
commit 85ea5c29a0

View File

@@ -43,8 +43,10 @@ class Link;
class QMLJS_EXPORT Bind: protected AST::Visitor
{
public:
protected:
Bind(Document::Ptr doc, Interpreter::Engine *interp);
public:
virtual ~Bind();
// ### TODO: This methods should go. Bind each document after parsing, link later.