diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
commit | 52be1ef0d126f09ba943c7afcf367e7d9347f2fd (patch) | |
tree | fd4b0dd148751c3c6c1b95296c3b82cb86051b83 /src/astleaf.h | |
parent | 795d0737fed40d88a7801b451b7750ba90802345 (diff) | |
download | build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.gz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.bz2 build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.xz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.zip |
tabconv: it's all spaces now.
Diffstat (limited to 'src/astleaf.h')
-rw-r--r-- | src/astleaf.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/src/astleaf.h b/src/astleaf.h index 85293f1..f78e593 100644 --- a/src/astleaf.h +++ b/src/astleaf.h | |||
@@ -8,32 +8,32 @@ | |||
8 | class AstLeaf : public AstNode | 8 | class AstLeaf : public AstNode |
9 | { | 9 | { |
10 | public: | 10 | public: |
11 | AstLeaf( const Location &loc, Type eType ); | 11 | AstLeaf( const Location &loc, Type eType ); |
12 | AstLeaf( const Location &loc, Type eType, int iNew ); | 12 | AstLeaf( const Location &loc, Type eType, int iNew ); |
13 | AstLeaf( const Location &loc, Type eType, float fNew ); | 13 | AstLeaf( const Location &loc, Type eType, float fNew ); |
14 | AstLeaf( const Location &loc, Type eType, bool bNew ); | 14 | AstLeaf( const Location &loc, Type eType, bool bNew ); |
15 | AstLeaf( const Location &loc, Type eType, const Bu::String &sNew ); | 15 | AstLeaf( const Location &loc, Type eType, const Bu::String &sNew ); |
16 | AstLeaf( const Location &loc, Type eType, const char *sNew ); | 16 | AstLeaf( const Location &loc, Type eType, const char *sNew ); |
17 | virtual ~AstLeaf(); | 17 | virtual ~AstLeaf(); |
18 | 18 | ||
19 | void setIntValue( int iNew ); | 19 | void setIntValue( int iNew ); |
20 | void setFloatValue( float fNew ); | 20 | void setFloatValue( float fNew ); |
21 | void setBoolValue( bool bNew ); | 21 | void setBoolValue( bool bNew ); |
22 | void setStrValue( const Bu::String &sNew ); | 22 | void setStrValue( const Bu::String &sNew ); |
23 | 23 | ||
24 | int getIntValue() const; | 24 | int getIntValue() const; |
25 | float getFloatValue() const; | 25 | float getFloatValue() const; |
26 | bool getBoolValue() const; | 26 | bool getBoolValue() const; |
27 | Bu::String &getStrValue() const; | 27 | Bu::String &getStrValue() const; |
28 | 28 | ||
29 | private: | 29 | private: |
30 | union | 30 | union |
31 | { | 31 | { |
32 | int iVal; | 32 | int iVal; |
33 | float fVal; | 33 | float fVal; |
34 | bool bVal; | 34 | bool bVal; |
35 | Bu::String *sVal; | 35 | Bu::String *sVal; |
36 | }; | 36 | }; |
37 | }; | 37 | }; |
38 | 38 | ||
39 | Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l ); | 39 | Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l ); |