Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / guicast / bccounter.h
blob138ef128713fe2e3a54edfc440feef68ae71c115
1 // Counter for memory leakage detection
3 #include "mutex.inc"
5 class BCCounter
7 public:
8 BCCounter();
9 ~BCCounter();
11 void up();
12 void down();
14 Mutex *mutex;
15 int value;
18 // Local Variables:
19 // mode: C++
20 // c-file-style: "linux"
21 // End: