Home | History | Annotate | Download | only in decpp

Lines Matching refs:string

23  * \brief Memory pool -backed string.
31 #include <string>
37 * \brief String template backed by memory pool
49 void toString (std::string& str) const;
50 std::string toString (void) const;
53 void append (const std::string& str);
57 PoolString& operator= (const std::string& str) { clear(); append(str); return *this; }
61 PoolString& operator+= (const std::string& str) { append(str); return *this; }
69 std::ostream& operator<< (std::ostream& stream, const PoolString& string);
82 inline std::string PoolString::toString (void) const
84 std::string str;