Line | |
---|
1 | #pragma once
|
---|
2 |
|
---|
3 | #include <jenga/include/smoothie/Variable.h>
|
---|
4 |
|
---|
5 |
|
---|
6 | class VariableImpl : public Variable
|
---|
7 | {
|
---|
8 | public:
|
---|
9 | VariableImpl( const string &name, const Type &type, bool isConst = false, bool isRef = false )
|
---|
10 | : Variable( name, type, isConst, isRef )
|
---|
11 | {
|
---|
12 | }
|
---|
13 | VariableImpl( const NamespaceScopes &namespaceScopes, const string &name, const Type &type, bool isConst = false, bool isRef = false )
|
---|
14 | : Variable( namespaceScopes, name, type, isConst, isRef )
|
---|
15 | {
|
---|
16 | }
|
---|
17 |
|
---|
18 | virtual bool IsEqualSymbol( const Symbol &symbol, bool isSupportStaticMember ) const;
|
---|
19 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.