aboutsummaryrefslogtreecommitdiff
path: root/src/cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cache.h')
-rw-r--r--src/cache.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/cache.h b/src/cache.h
index f36c29b..2b93479 100644
--- a/src/cache.h
+++ b/src/cache.h
@@ -90,7 +90,12 @@ namespace Bu
90 return pData; 90 return pData;
91 } 91 }
92 92
93 bool isLoaded() const 93 bool isValid() const
94 {
95 return pCache != NULL;
96 }
97
98 bool isBound() const
94 { 99 {
95 return pData != NULL; 100 return pData != NULL;
96 } 101 }