Last change
on this file was 829, checked in by イグトランス (egtra), 13 years ago |
svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定
|
-
Property svn:eol-style
set to
native
-
Property svn:mime-type
set to
text/plain; charset=Shift_JIS
|
File size:
316 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.