diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-08 22:58:28 +0000 |
commit | 52be1ef0d126f09ba943c7afcf367e7d9347f2fd (patch) | |
tree | fd4b0dd148751c3c6c1b95296c3b82cb86051b83 /src/cache.h | |
parent | 795d0737fed40d88a7801b451b7750ba90802345 (diff) | |
download | build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.gz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.bz2 build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.tar.xz build-52be1ef0d126f09ba943c7afcf367e7d9347f2fd.zip |
tabconv: it's all spaces now.
Diffstat (limited to '')
-rw-r--r-- | src/cache.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/cache.h b/src/cache.h index 57df281..9a53803 100644 --- a/src/cache.h +++ b/src/cache.h | |||
@@ -13,26 +13,26 @@ class Cache : public Bu::Singleton<Cache> | |||
13 | { | 13 | { |
14 | friend class Bu::Singleton<Cache>; | 14 | friend class Bu::Singleton<Cache>; |
15 | private: | 15 | private: |
16 | Cache(); | 16 | Cache(); |
17 | virtual ~Cache(); | 17 | virtual ~Cache(); |
18 | 18 | ||
19 | public: | 19 | public: |
20 | void bind( const Bu::String &sCacheFile ); | 20 | void bind( const Bu::String &sCacheFile ); |
21 | 21 | ||
22 | void load(); | 22 | void load(); |
23 | void save(); | 23 | void save(); |
24 | 24 | ||
25 | StrList getRequires( const Bu::String &sOutput ); | 25 | StrList getRequires( const Bu::String &sOutput ); |
26 | void setRequires( const Bu::String &sOutput, StrList lReqs ); | 26 | void setRequires( const Bu::String &sOutput, StrList lReqs ); |
27 | 27 | ||
28 | private: | 28 | private: |
29 | bool bCacheChanged; | 29 | bool bCacheChanged; |
30 | Bu::String sCacheFile; | 30 | Bu::String sCacheFile; |
31 | bool bIsLoaded; | 31 | bool bIsLoaded; |
32 | typedef Bu::Hash<Bu::String, StrList> ReqHash; | 32 | typedef Bu::Hash<Bu::String, StrList> ReqHash; |
33 | ReqHash hRequires; | 33 | ReqHash hRequires; |
34 | typedef Bu::Hash<Bu::String, Variable> VarHash; | 34 | typedef Bu::Hash<Bu::String, Variable> VarHash; |
35 | VarHash hVariables; | 35 | VarHash hVariables; |
36 | }; | 36 | }; |
37 | 37 | ||
38 | #endif | 38 | #endif |