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

Last change on this file since 829 was 829, checked in by イグトランス (egtra), 12 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
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.