Annotation of parser3/src/classes/dnode.h, revision 1.2

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: 
1.2     ! parser      7:        $Id: dnode.h,v 1.1 2001/09/18 12:25:06 parser Exp $
1.1       parser      8: */
                      9: 
                     10: #ifndef DNODE_H
                     11: #define DNODE_H
                     12: 
                     13: #include <util/XMLString.hpp>
                     14: 
                     15: class MDnode : public Methoded {
                     16: public: // VStateless_class
                     17:        Value *create_new_value(Pool& pool) { return new(pool) VDnode(pool); }
                     18: 
                     19: public:
                     20:        MDnode(Pool& pool);
                     21: 
                     22: public: // Methoded
                     23:        bool used_directly() { return true; }
                     24: };
                     25: 
                     26: #endif

E-mail: