Annotation of parser3/src/types/pa_property.h, revision 1.2

1.1       paf         1: /** @file
                      2:        Parser: Property class decl.
                      3: 
1.2     ! paf         4:        Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com)
1.1       paf         5:        Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
                      6: */
                      7: 
                      8: #ifndef PA_PROPERTY_H
                      9: #define PA_PROPERTY_H
                     10: 
1.2     ! paf        11: static const char * const IDENT_PROPERTY_H="$Date: 2005/07/15 06:16:41 $";
1.1       paf        12: 
                     13: class Method;
                     14: 
                     15: /** \b junction is getter and setter methods.
                     16: 
                     17:        it is used to cache our knowledge that some element is in fact property
                     18:        and to save us one hash lookup and one name construction (element--get_element/set_leement)
                     19: */
                     20: class Property: public PA_Object {
                     21: public:
                     22:        Method* getter;
                     23:        Method* setter;
                     24: };
                     25: 
                     26: #endif

E-mail: