/[svn]/libgig/trunk/src/helper.h
ViewVC logotype

Contents of /libgig/trunk/src/helper.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 803 - (show annotations) (download) (as text)
Sat Nov 12 12:36:49 2005 UTC (18 years, 4 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 1994 byte(s)
forgot to add new header 'helper.h' recently

1 /***************************************************************************
2 * *
3 * libgig - C++ cross-platform Gigasampler format file loader library *
4 * *
5 * Copyright (C) 2003-2005 by Christian Schoenebeck *
6 * <cuse@users.sourceforge.net> *
7 * *
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this library; if not, write to the Free Software *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21 * MA 02111-1307 USA *
22 ***************************************************************************/
23
24 #ifndef __LIBGIG_HELPER_H__
25 #define __LIBGIG_HELPER_H__
26
27 #include <string>
28 #include <sstream>
29
30 // *************** Helper Functions **************
31 // *
32
33 template<class T> inline std::string ToString(T o) {
34 std::stringstream ss;
35 ss << o;
36 return ss.str();
37 }
38
39 #endif // __LIBGIG_HELPER_H__

  ViewVC Help
Powered by ViewVC