source: trunk/FACT++/src/tools.h@ 13288

Last change on this file since 13288 was 13221, checked in by tbretz, 13 years ago
Added TrimQuotes
File size: 339 bytes
Line 
1#ifndef FACT_Tools
2#define FACT_Tools
3
4#include <string>
5
6namespace Tools
7{
8 std::string Format(const char *fmt, va_list &ap);
9 std::string Form(const char *fmt, ...);
10 std::string Trim(const std::string &str);
11 std::string TrimQuotes(const std::string &str);
12 std::string Wrap(std::string &str, size_t width=78);
13}
14
15#endif
Note: See TracBrowser for help on using the repository browser.