summaryrefslogtreecommitdiffstats
path: root/raul/fmt.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-17 02:14:07 +0000
committerDavid Robillard <d@drobilla.net>2012-08-17 02:14:07 +0000
commit882245f41683924d0465b5afac2f8bb5c3786e60 (patch)
tree3220e84c90168eadaa7ccbaec06c1dc7ca1aacda /raul/fmt.hpp
parent137a7fac329b7ca70babf00823efe431035a7657 (diff)
downloadraul-882245f41683924d0465b5afac2f8bb5c3786e60.tar.gz
raul-882245f41683924d0465b5afac2f8bb5c3786e60.tar.bz2
raul-882245f41683924d0465b5afac2f8bb5c3786e60.zip
Implement real logging system, LV2 log extension support, and purge evil/ugly/untranslatable C++ stream printing.
Remove coloured log stuff from Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4717 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul/fmt.hpp')
-rw-r--r--raul/fmt.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/raul/fmt.hpp b/raul/fmt.hpp
new file mode 100644
index 0000000..8af82f0
--- /dev/null
+++ b/raul/fmt.hpp
@@ -0,0 +1,28 @@
+/*
+ This file is part of Raul.
+ Copyright 2007-2012 David Robillard <http://drobilla.net>
+
+ Raul is free software: you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation, either version 3 of the License, or any later version.
+
+ Raul is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with Raul. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef RAUL_FMT_HPP
+#define RAUL_FMT_HPP
+
+#include <boost/format.hpp>
+
+namespace Raul {
+
+typedef boost::basic_format<char> fmt;
+
+} // namespace Raul
+
+#endif // RAUL_FMT_HPP