diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-10-09 20:20:34 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-10-09 20:20:34 +0000 |
commit | 4808617ef54d40efcf1a3ed30525898defb74e10 (patch) | |
tree | e16763eb646fdf3dea7c32a8d57c147356be9299 /src/cachable.cpp | |
parent | fecbea5970bb89c15b35f5df5b09914b4c91efe0 (diff) | |
download | libbu++-4808617ef54d40efcf1a3ed30525898defb74e10.tar.gz libbu++-4808617ef54d40efcf1a3ed30525898defb74e10.tar.bz2 libbu++-4808617ef54d40efcf1a3ed30525898defb74e10.tar.xz libbu++-4808617ef54d40efcf1a3ed30525898defb74e10.zip |
More cache development. I'm going to have to switch from template functions to
functors. I like template functions a little more, but functors can be at
least as fast. It won't be much of a change.
Diffstat (limited to 'src/cachable.cpp')
-rw-r--r-- | src/cachable.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cachable.cpp b/src/cachable.cpp new file mode 100644 index 0000000..7fa2d23 --- /dev/null +++ b/src/cachable.cpp | |||
@@ -0,0 +1,15 @@ | |||
1 | #include "bu/cachable.h" | ||
2 | |||
3 | Bu::Cachable::Cachable() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::Cachable::~Cachable() | ||
8 | { | ||
9 | } | ||
10 | |||
11 | template<> long Bu::getCacheId<Bu::Cachable>( const Bu::Cachable *o ) | ||
12 | { | ||
13 | return o->getCacheId(); | ||
14 | } | ||
15 | |||