File:  [parser3project] / parser3 / src / classes / xnode.h
Revision 1.15: download - view: text, annotated - select for diffs - revision graph
Tue Aug 13 15:55:41 2002 UTC (23 years, 10 months ago) by paf
Branches: MAIN
CVS tags: HEAD
introduced Value::get_element(..., bool looking_down) [needed to exclude endless recoursion]

/** @file
	Parser: @b dnode methods class - MDnode class decl.

	Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com)
	Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
*/

#ifndef XNODE_H
#define XNODE_H

static const char* IDENT_XNODE_H="$Date: 2002/08/13 15:55:41 $";

class MXnode : public Methoded {
public: // Value

	/// MXnode: +$const
	Value *get_element(const String& aname, Value *aself, bool looking_down) {
		// $method
		if(Value *result=Methoded::get_element(aname, aself, looking_down))
			return result;

		// $const
		if(Value *result=(Value *)consts.get(aname))
			return result;
		
		return 0;
	}


public: // VStateless_class
	Value *create_new_value(Pool& pool) { return new(pool) VXnode(pool, 0); }

public:
	MXnode(Pool& pool, const char *aname=0, VStateless_class *abase=0);

public: // Methoded
	bool used_directly() { return true; }

private:

	Hash consts;
};

#define gdome_xml_doc_get_xmlDoc(dome_doc) ((_Gdome_xml_Document *)dome_doc)->n;

GdomeNode *as_node(const String& method_name, MethodParams *params, 
						int index, const char *msg);

#endif

E-mail: