ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/utils/StringUtils.hpp
(Generate patch)

Comparing trunk/OOPSE-4/src/utils/StringUtils.hpp (file contents):
Revision 2537 by tim, Mon Jan 9 19:11:52 2006 UTC vs.
Revision 2544 by tim, Wed Jan 11 19:01:20 2006 UTC

# Line 150 | Line 150 | namespace oopse {
150    /**@todo need implementation */
151    std::string getSuffix(const std::string& str);
152    
153  
153  
154 + template<class ContainerType>
155 + std::string containerToString(const ContainerType& cont) {
156 +    std::ostringstream oss;
157 +    oss << "(";
158 +    typename ContainerType::const_iterator i = cont.begin();
159 +    if (i != cont.end()) {
160 +        oss << *i;
161 +        ++i;
162 +    }
163 +    for (; i != cont.end();++i) {
164 +        oss << ", ";
165 +        oss << *i;
166 +    }
167 +    oss << ")";
168 +    return oss.str();
169 + }  
170 +
171    
172   }  
173   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines