summaryrefslogtreecommitdiff
path: root/src/lut_cache.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-07-18 13:50:59 +0100
committerCarl Hetherington <cth@carlh.net>2014-07-18 13:50:59 +0100
commit75dbcf84d3539a26dc9c0256b7161d7fa3473942 (patch)
treee6e7ce8698f123c3c62c594d567f4518e0c22220 /src/lut_cache.h
parent7fd2e1ce5a2a297ce8b36abb2ac9bbf393400032 (diff)
Missing namespace.
Diffstat (limited to 'src/lut_cache.h')
-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