~ubuntu-branches/ubuntu/oneiric/bombono-dvd/oneiric

« back to all changes in this revision

Viewing changes to src/mlib/string.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2011-01-03 10:25:30 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110103102530-mos2l5do984anaw8
Tags: 1.0.0-0ubuntu1
* New upstream release (LP: #695754).
* Build-depends on libavformat-dev,libswscale-dev.
* Recommends on ttf-freefont.
* Don't install FreeSans.ttf, already available in ttf-freefont.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
 
75
75
} // namespace Str
76
76
 
77
 
inline std::string PointToStr(const Point& pnt)
78
 
{
79
 
    return (str::stream() << pnt.x << 'x' << pnt.y).str();
80
 
}
81
 
 
 
77
std::string PointToStr(const Point& pnt);
 
78
std::string Double2Str(double val);
 
79
std::string Int2Str(int val);
 
80
 
 
81
bool ExtMatch(const char* display_name, const char* ext);
 
82
 
 
83
std::string QuotedName(const std::string& str);
82
84
 
83
85
#endif // __MLIB_STRING_H__
84
86