[23b6f4d7] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
| 7 | // Label.h --
|
---|
| 8 | //
|
---|
| 9 | // Author : Rob Schluntz
|
---|
| 10 | // Created On : Wed Jun 8 12:53:12 2016
|
---|
[d1625f8] | 11 | // Last Modified By : Peter A. Buhr
|
---|
[6b0b624] | 12 | // Last Modified On : Sat Jul 22 09:52:44 2017
|
---|
| 13 | // Update Count : 3
|
---|
[23b6f4d7] | 14 | //
|
---|
| 15 |
|
---|
[6b0b624] | 16 | #pragma once
|
---|
[23b6f4d7] | 17 |
|
---|
| 18 | #include <string>
|
---|
| 19 | #include <list>
|
---|
| 20 | #include <iostream>
|
---|
[70a1c3ae] | 21 | #include <vector>
|
---|
[23b6f4d7] | 22 | #include "SynTree.h"
|
---|
| 23 |
|
---|
| 24 | class Label {
|
---|
| 25 | public:
|
---|
[70a1c3ae] | 26 | Label( const std::string & name = "", Statement * labelled = 0, const std::vector< Attribute * > & attributes = std::vector< Attribute * >() ) : name( name ), labelled( labelled ), attributes( attributes ) {}
|
---|
[23b6f4d7] | 27 | Label( const char * name, Statement * labelled = 0 ) : name( name ), labelled( labelled ) {}
|
---|
| 28 |
|
---|
| 29 | const std::string & get_name() const { return name; }
|
---|
| 30 | void set_name( const std::string & newValue ) { name = newValue; }
|
---|
| 31 |
|
---|
| 32 | Statement * get_statement() const { return labelled; }
|
---|
| 33 | void set_statement( Statement * newValue ) { labelled = newValue; }
|
---|
[70a1c3ae] | 34 | std::vector< Attribute * >& get_attributes() { return attributes; }
|
---|
[23b6f4d7] | 35 |
|
---|
[94e025a2] | 36 | operator std::string() const { return name; }
|
---|
[23b6f4d7] | 37 | bool empty() { return name.empty(); }
|
---|
| 38 | private:
|
---|
| 39 | std::string name;
|
---|
| 40 | Statement * labelled;
|
---|
[70a1c3ae] | 41 | std::vector< Attribute * > attributes;
|
---|
[23b6f4d7] | 42 | };
|
---|
| 43 |
|
---|
| 44 | inline bool operator==( Label l1, Label l2 ) { return l1.get_name() == l2.get_name(); }
|
---|
| 45 | inline bool operator!=( Label l1, Label l2 ) { return ! (l1 == l2); }
|
---|
| 46 | inline bool operator<( Label l1, Label l2 ) { return l1.get_name() < l2.get_name(); }
|
---|
| 47 | // inline Label operator+( Label l1, Label l2 ) { return l1.get_name() + l2.get_name(); }
|
---|
| 48 | // inline Label operator+( Label l1, const char * str ) { return l1.get_name() + Label( str ); }
|
---|
| 49 | inline std::ostream & operator<<( std::ostream & out, const Label & l ) { return out << l.get_name(); }
|
---|
| 50 |
|
---|
[bee0694] | 51 | static const std::vector< Label > noLabels;
|
---|
[23b6f4d7] | 52 |
|
---|
| 53 | // Local Variables: //
|
---|
| 54 | // tab-width: 4 //
|
---|
| 55 | // mode: c++ //
|
---|
| 56 | // compile-command: "make install" //
|
---|
| 57 | // End: //
|
---|