source: dev/trunk/abdev/BasicCompiler_Common/include/VariableImpl.h@ 193

Last change on this file since 193 was 193, checked in by dai_9181, 17 years ago
File size: 565 bytes
Line 
1#pragma once
2
3#include <jenga/include/smoothie/Variable.h>
4
5
6class VariableImpl : public Variable
7{
8public:
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.