repo.or.cz
/
cinelerra_cv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1053: Add Russian translation.
[cinelerra_cv.git]
/
guicast
/
bccounter.h
blob
208c245c382e9a08ee20b4e5a16ea0d727781d0f
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
};