Changes in src/SynTree/Attribute.h [50377a4:2b7bf59]
- File:
-
- 1 edited
-
src/SynTree/Attribute.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Attribute.h
r50377a4 r2b7bf59 43 43 bool empty() const { return name == ""; } 44 44 45 Attribute * clone() const override{ return new Attribute( *this ); }46 virtual void accept( Visitor & v ) override{ v.visit( this ); }47 virtual Attribute * acceptMutator( Mutator & m ) override{ return m.mutate( this ); }48 virtual void print( std::ostream & os, Indenter indent = {} ) const override;45 Attribute * clone() const { return new Attribute( *this ); } 46 virtual void accept( Visitor & v ) { v.visit( this ); } 47 virtual Attribute * acceptMutator( Mutator & m ) { return m.mutate( this ); } 48 virtual void print( std::ostream & os, int indent = 0 ) const; 49 49 }; 50 50
Note:
See TracChangeset
for help on using the changeset viewer.