?? ctrl_center.h
字號:
/******************************************************************
** Filename : Ctrl_Center.h
** Copyright (c) 2001-2002 Computer Science & Technology Zhejiang University
** Editor : zhousen(周森)
** Date : 2001-12-18 To 2002-01-05
** Version : 1.00
******************************************************************/
#ifndef CTRL_CENTER_H
#define CTRL_CENTER_H
#include "Glob_Var.h"
#include "buffer.h"
#include "error.h"
#include "ZBTree.h"
#include "Catalog.h"
void Create( TB_Create_Info& ); // create the date file and the index file
void Select( TB_Select_Info& ); // select the date and print
void Insert( TB_Insert_Info& ); // insert a new record and adjust the B+ tree
void Update( TB_Update_Info& ); // update a record
void Delete( TB_Delete_Info& ); // delete a record and adjust the B+ tree
// print a string of record
void Print(ZBTree & tree,Select_Rec_Info & SelectRecInfo,
bool IncludeMin,Key_Location min,bool IncludeMax,Key_Location max);
void UpdateRec(ZBTree & tree,Rec_Info & RecInfo,
bool IncludeMin,Key_Location min,bool IncludeMax,Key_Location max);
void Ctrl_DropTB();
void Ctrl_DropDB();
#endif // !ifdef CTRL_CENTER_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -