?? command.h
字號(hào):
// -*- Mode: C++ -*- ----------------------------------------
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /cvsroot/fastdb/fastdb/GiST/RSTree/command.h,v 1.1 2007/07/18 20:45:47 knizhnik Exp $
//
// command.h
// Test Program: Command Parser .h
//
// ----------------------------------------------------------
#ifndef COMMAND_H
#define COMMAND_H
class Record {
public:
int value;
TYPE_DESCRIPTOR((FIELD(value)));
};
void CommandCreate(const char *method,
const char *table);
void CommandDrop(const char *table);
void CommandOpen(const char *method, const char *table);
void CommandClose(const char *table);
void CommandSelect(const char *table,
const GiSTpredicate& pred);
void CommandDelete(const char *table,
const GiSTpredicate& pred);
void CommandInsert(const char *table,
const RTkey& key,
int ptr);
void CommandDump(const char *table, GiSTpage page);
void CommandQuit();
void CommandDebug();
void CommandHelp();
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -