Annotation of parser3/src/classes/dnode.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:
! 6: Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
! 7:
! 8: $Id: classes.h,v 1.9 2001/08/02 06:54:12 parser Exp $
! 9: */
! 10:
! 11: #ifndef DNODE_H
! 12: #define DNODE_H
! 13:
! 14: #include <util/XMLString.hpp>
! 15:
! 16: class MDnode : public Methoded {
! 17: public: // VStateless_class
! 18: Value *create_new_value(Pool& pool) { return new(pool) VDnode(pool); }
! 19:
! 20: public:
! 21: MDnode(Pool& pool);
! 22:
! 23: public: // Methoded
! 24: bool used_directly() { return true; }
! 25: };
! 26:
! 27: #endif
E-mail: