Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

equalifier.h

Go to the documentation of this file.
00001 
00002 //
00003 //  Borland C++ 5.5, GNU C++ 3.0
00004 //  Compiler Backend Library
00005 //  $Id: equalifier_8h-source.html,v 1.1 2002/07/18 14:58:45 cparpart Exp $
00006 //
00007 //  Copyright (c) 2000-2002 SurakWare Corp.
00008 //
00010 #ifndef sw_cbl_codetree_equalifier_h
00011 #define sw_cbl_codetree_equalifier_h
00012 
00013 #include 
00014 
00015 namespace cbl {
00016 namespace codetree {
00017 namespace expr {
00018 
00019 class TQualExpr : public TExpression {
00020 private:
00021     TExpression *FBase, *FQualifier;
00022 
00023 protected:
00024     TQualExpr(symbols::TModuleSym *AOwner, TExpression *ABase, 
00025         TExpression *AQualifier);
00026 
00027     friend class symbols::TModuleSym;
00028 
00029 public:
00030     // base & qualifier access
00031     const TExpression *base() const;
00032     const TExpression *qualifier() const;
00033 
00034     // visitor pattern
00035     virtual void accept(TExprVisitor&);
00036 };
00037 
00038 } // namespace expr
00039 } // namespace codetree
00040 } // namespace cbl
00041 
00042 #endif

Generated on Sat Apr 6 19:07:25 2002 for Compiler Backend Library by doxygen1.2.14 written by , © 1997-2002