Changeset 16482
- Timestamp:
- 05/30/13 14:55:19 (12 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/DimDescriptionService.cc
r15168 r16482 171 171 int DimDescribedService::Update(const char *data) 172 172 { 173 DimService::setData(const_cast<char*>(data));173 setData(data); 174 174 return Update(); 175 175 } -
trunk/FACT++/src/DimDescriptionService.h
r16475 r16482 68 68 } 69 69 70 void setData(const char *str) 71 { 72 DimService::setData(const_cast<char*>(str)); 73 } 74 75 void setData(const std::string &str) 76 { 77 setData(str.data()); 78 } 79 70 80 template<class T> 71 81 void setData(const T &data)
Note:
See TracChangeset
for help on using the changeset viewer.