summaryrefslogtreecommitdiff
path: root/libcult/cult/trace/log.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libcult/cult/trace/log.hxx')
-rw-r--r--libcult/cult/trace/log.hxx51
1 files changed, 51 insertions, 0 deletions
diff --git a/libcult/cult/trace/log.hxx b/libcult/cult/trace/log.hxx
new file mode 100644
index 0000000..2b21acf
--- /dev/null
+++ b/libcult/cult/trace/log.hxx
@@ -0,0 +1,51 @@
+// file : cult/trace/log.hxx
+// author : Boris Kolpackov <boris@kolpackov.net>
+// copyright : Copyright (c) 2005-2010 Boris Kolpackov
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef CULT_TRACE_LOG_HXX
+#define CULT_TRACE_LOG_HXX
+
+#include <cult/types/fundamental.hxx>
+
+#include <cult/trace/record.hxx>
+
+namespace Cult
+{
+ namespace Trace
+ {
+ class Log: public NonCopyable
+ {
+ public:
+ Log (Int level = -1);
+
+ public:
+ Int
+ level () const;
+
+ Void
+ level (Int level);
+
+ public:
+ //@@ should it be virtual?
+ //
+ Log&
+ operator<< (Record const& r);
+
+ public:
+ static Log&
+ instance ();
+
+ private:
+ Void
+ log_impl (Record const& r);
+
+ private:
+ Int level_;
+ };
+ }
+}
+
+#include <cult/trace/log.ixx>
+
+#endif // CULT_TRACE_LOG_HXX