fastdb-2.92的源码

源代码在线查看: command.h

软件大小: 758 K
上传用户: yxm_325
关键词: fastdb 2.92 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				// -*- Mode: C++ -*- ----------------------------------------				//				// Copyright (c) 1996, Regents of the University of California				// $Header: /usr/local/devel/GiST/libGiST/RSTree/command.h,v 1.1.1.1 1996/08/06 23:47:23 jmh 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							

相关资源