repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
guicast
/
bccounter.h
blob
138ef128713fe2e3a54edfc440feef68ae71c115
1
// Counter for memory leakage detection
2
3
#include
"mutex.inc"
4
5
class
BCCounter
6
{
7
public
:
8
BCCounter
();
9
~
BCCounter
();
10
11
void
up
();
12
void
down
();
13
14
Mutex
*
mutex
;
15
int
value
;
16
};
17
/*
18
// Local Variables:
19
// mode: C++
20
// c-file-style: "linux"
21
// End:
22
*/