SiGraph: sulcal graphs


foldCache.h
Go to the documentation of this file.
1
2#ifndef SI_FOLD_FOLDCACHE_H
3#define SI_FOLD_FOLDCACHE_H
4
5
7#include <vector>
8
9
10namespace sigraph
11{
12
15 class FoldCache : public CliqueCache
16 {
17 public:
19 virtual ~FoldCache();
20
21 virtual CliqueCache* clone() const;
22
23 std::vector<double> inputVector;
25 std::vector<bool> subVecValid;
26
27 protected:
28
29 private:
30 };
31
32
33 // inline
34
36 {
37 return( new FoldCache );
38 }
39
40}
41
42#endif
43
44
std::vector< bool > subVecValid
Definition foldCache.h:25
std::vector< double > inputVector
Definition foldCache.h:23
virtual CliqueCache * clone() const
Definition foldCache.h:35
virtual ~FoldCache()