source: dev/trunk/ab5.0/abdev/compiler_x64/CLockParameter.cpp@ 673

Last change on this file since 673 was 206, checked in by dai_9181, 17 years ago

コード全体のリファクタリングを実施

File size: 333 bytes
Line 
1#include "stdafx.h"
2
3#include "../BasicCompiler_Common/common.h"
4#include "opcode.h"
5
6CDBLockParms::CDBLockParms(){
7}
8CDBLockParms::~CDBLockParms(){
9}
10void CDBLockParms::lock(int level){
11 array_LevelCount[level]++;
12}
13void CDBLockParms::unlock(int level){
14 array_LevelCount[level]--;
15}
16
17CDBLockParms obj_DBLockParms;
Note: See TracBrowser for help on using the repository browser.