Annotation of parser3/src/classes/xnode.h, revision 1.1
1.1 ! parser 1: /** @file
! 2: Parser: @b dnode methods class - MDnode class decl.
! 3:
! 4: Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
! 5: Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
! 6:
! 7: $Id: dnode.h,v 1.2 2001/09/26 10:32:25 parser Exp $
! 8: */
! 9:
! 10: #ifndef XNODE_H
! 11: #define XNODE_H
! 12:
! 13: #include <util/XMLString.hpp>
! 14:
! 15: class MXnode : public Methoded {
! 16: public: // VStateless_class
! 17: Value *create_new_value(Pool& pool) { return new(pool) VXnode(pool); }
! 18:
! 19: public:
! 20: MXnode(Pool& pool);
! 21:
! 22: public: // Methoded
! 23: bool used_directly() { return true; }
! 24: };
! 25:
! 26: #endif
E-mail: