aboutsummaryrefslogtreecommitdiff
path: root/src/tests/cache.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2008-10-09 20:20:34 +0000
committerMike Buland <eichlan@xagasoft.com>2008-10-09 20:20:34 +0000
commit4808617ef54d40efcf1a3ed30525898defb74e10 (patch)
treee16763eb646fdf3dea7c32a8d57c147356be9299 /src/tests/cache.cpp
parentfecbea5970bb89c15b35f5df5b09914b4c91efe0 (diff)
downloadlibbu++-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/tests/cache.cpp')
-rw-r--r--src/tests/cache.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/tests/cache.cpp b/src/tests/cache.cpp
new file mode 100644
index 0000000..e51c31b
--- /dev/null
+++ b/src/tests/cache.cpp
@@ -0,0 +1,31 @@
1#include <stdio.h>
2
3#include "bu/cache.h"
4#include "bu/cachable.h"
5
6class Bob : public Bu::Cachable
7{
8public:
9 Bob()
10 {
11 }
12
13 virtual ~Bob()
14 {
15 }
16
17 long getCacheId() const
18 {
19 return 0;
20 }
21
22 int iInt;
23};
24
25int main()
26{
27 Bu::Cache<Bob> bobCache;
28
29// Bu::CPtr<Bob> pB = bobCache.insert( new Bob() );
30}
31