summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lut_cache.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lut_cache.h b/src/lut_cache.h
index 5c75fe6a..9bffa7b0 100644
--- a/src/lut_cache.h
+++ b/src/lut_cache.h
@@ -24,6 +24,8 @@
#include <boost/shared_ptr.hpp>
#include <boost/noncopyable.hpp>
+namespace dcp {
+
template<class T>
class LUTCache : public boost::noncopyable
{
@@ -45,4 +47,6 @@ private:
std::list<boost::shared_ptr<T> > _cache;
};
+}
+
#endif