devfileheader.h

来自「数据挖掘经典的hierarchial clustering algorithm」· C头文件 代码 · 共 60 行

H
60
字号
 */

/*
  $Id: DevFileHeader.h,v 1.3 1996/11/03 02:41:37 kmurli Exp $

  $Log: DevFileHeader.h,v $
  Revision 1.3  1996/11/03 02:41:37  kmurli
  Modified to include the query schema level. Also modified to include DQL
  processing

  Revision 1.2  1996/08/23 16:56:15  wenger
  First version that allows the use of Dali to display images (more work
  needs to be done on this); changed DevStatus to a class to make it work
  better; various minor bug fixes.

  Revision 1.1  1996/07/11 17:25:40  wenger
  Devise now writes headers to some of the files it writes;
  DataSourceSegment class allows non-fixed data length with non-zero
  offset; GUI for editing schema files can deal with comment lines;
  added targets to top-level makefiles to allow more flexibility.

 */

#ifndef _DevFileHeader_h_
#define _DevFileHeader_h_


#include "DeviseTypes.h"


// Note: file types are defined as strings to make Tcl interface easier.
#define FILE_TYPE_SESSION       "session"
#define FILE_TYPE_TDATA         "tdata"
#define FILE_TYPE_DATACAT       "dataCat"
#define FILE_TYPE_PSCHEMA       "physSchema"
#define FILE_TYPE_LSCHEMA       "logSchema"
#define FILE_TYPE_QSCHEMA       "querySchema"
#define FILE_TYPE_TEMP          "temp"
#define FILE_TYPE_WORK          "work"
#define FILE_TYPE_CACHE         "cache"
#define FILE_TYPE_CORAL         "coral"
#define FILE_TYPE_PIXMAP        "pixmap"
#define FILE_TYPE_SCHEMACAT     "schemaCat"


class DevFileHeader
{
public:
    static char *Get(char *fileType);
    //static DevStatus Write();
    //static DevStatus Read();
    //static DevStatus Parse();
    //static DevStatus Skip();
};


#endif /* _DevFileHeader_h_ */

/*============================================================================*/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?