Changes in src/SynTree/Label.h [f9cebb5:4b2589a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Label.h
rf9cebb5 r4b2589a 24 24 class Label { 25 25 public: 26 Label( const std::string & name = "", Statement * labelled = 0 , const std::list< Attribute * > & attributes = std::list< Attribute * >() ) : name( name ), labelled( labelled ), attributes( attributes) {}26 Label( const std::string & name = "", Statement * labelled = 0 ) : name( name ), labelled( labelled ) {} 27 27 Label( const char * name, Statement * labelled = 0 ) : name( name ), labelled( labelled ) {} 28 28
Note:
See TracChangeset
for help on using the changeset viewer.