source:
dev/trunk/abdev/BasicCompiler64/CLockParameter.cpp@
347
Last change on this file since 347 was 206, checked in by , 17 years ago | |
---|---|
File size: 333 bytes |
Line | |
---|---|
1 | #include "stdafx.h" |
2 | |
3 | #include "../BasicCompiler_Common/common.h" |
4 | #include "opcode.h" |
5 | |
6 | CDBLockParms::CDBLockParms(){ |
7 | } |
8 | CDBLockParms::~CDBLockParms(){ |
9 | } |
10 | void CDBLockParms::lock(int level){ |
11 | array_LevelCount[level]++; |
12 | } |
13 | void CDBLockParms::unlock(int level){ |
14 | array_LevelCount[level]--; |
15 | } |
16 | |
17 | CDBLockParms obj_DBLockParms; |
Note:
See TracBrowser
for help on using the repository browser.