Annotation of parser3/src/include/pa_bool.h, revision 1.1

1.1     ! paf         1: /*
        !             2:   $Id: pa_string.h,v 1.26 2001/03/07 09:29:53 paf Exp $
        !             3: */
        !             4: 
        !             5: #ifndef PA_BOOL_H
        !             6: #define PA_BOOL_H
        !             7: 
        !             8: #ifdef HAVE_CONFIG_H
        !             9: #include "pa_config.h"
        !            10: #endif
        !            11: 
        !            12: #include "pa_pool.h"
        !            13: 
        !            14: class Bool : public Pooled {
        !            15: public:
        !            16: 
        !            17:        Bool(Pool& apool, bool avalue) : Pooled(apool),
        !            18:                value(avalue) {
        !            19:        }
        !            20: 
        !            21: //     bool operator == (const Bool& src) const {
        !            22: 
        !            23: public:
        !            24: 
        !            25:        bool value;
        !            26: 
        !            27: private: //disabled
        !            28: 
        !            29:        Bool& operator = (const Bool&) { return *this; }
        !            30: 
        !            31: };
        !            32: 
        !            33: #endif

E-mail: