Annotation of parser3/src/types/pa_vstatus.h, revision 1.28

1.1       paf         1: /** @file
                      2:        Parser: @b status class decl.
                      3: 
1.27      moko        4:        Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
1.26      moko        5:        Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>
1.1       paf         6: */
                      7: 
                      8: #ifndef PA_VSTATUS_H
                      9: #define PA_VSTATUS_H
1.9       paf        10: 
1.28    ! moko       11: #define IDENT_PA_VSTATUS_H "$Id: pa_vstatus.h,v 1.27 2024/11/04 03:53:26 moko Exp $"
1.1       paf        12: 
1.16      paf        13: // includes
1.1       paf        14: 
1.23      moko       15: #include "pa_vstateless_class.h"
1.16      paf        16: 
1.1       paf        17: /// status class
1.23      moko       18: class VStatus: public VStateless_class {
1.16      paf        19: 
1.1       paf        20: public: // Value
                     21:        
1.16      paf        22:        const char* type() const { return "status"; }
1.1       paf        23: 
                     24:        // VStatus: field
1.20      misha      25:        Value* get_element(const String& aname);
1.1       paf        26: 
1.28    ! moko       27:        // VStatus: (limit-*)=value
        !            28:        const VJunction* put_element(const String& aname, Value* avalue);
        !            29: 
1.16      paf        30: public: //  usage
1.1       paf        31: 
                     32: };
                     33: 
                     34: #endif

E-mail: