Changeset 254 in dev for trunk/abdev/BasicCompiler_Common/src/Const.cpp
- Timestamp:
- Jul 31, 2007, 4:30:31 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/Const.cpp
r206 r254 92 92 93 93 94 int Consts::GetBasicType(c har *Name){94 int Consts::GetBasicType(const char *Name){ 95 95 CConst *pConst = GetObjectPtr(Name); 96 96 … … 99 99 return pConst->GetType().GetBasicType(); 100 100 } 101 _int64 Consts::GetWholeData(c har *Name){101 _int64 Consts::GetWholeData(const char *Name){ 102 102 CConst *pConst = GetObjectPtr(Name); 103 103 … … 106 106 return pConst->GetWholeData(); 107 107 } 108 double Consts::GetDoubleData(c har *Name){108 double Consts::GetDoubleData(const char *Name){ 109 109 CConst *pConst = GetObjectPtr(Name); 110 110 … … 113 113 return pConst->GetDoubleData(); 114 114 } 115 bool Consts::IsStringPtr( c har *Name ){115 bool Consts::IsStringPtr( const char *Name ){ 116 116 CConst *pConst = GetObjectPtr(Name); 117 117
Note:
See TracChangeset
for help on using the changeset viewer.