00001 /*************************************************************************** 00002 * 00003 * $Id: dbConfig.h,v 1.2 2004/01/31 02:17:22 porter Exp $ 00004 * 00005 * Author: R. Jeff Porter & V. Perevoztchikov 00006 *************************************************************************** 00007 * 00008 * Description: c-struct for listing a configuration used by St_db_Maker 00009 * 00010 * 00011 *************************************************************************** 00012 * 00013 * $Log: dbConfig.h,v $ 00014 * Revision 1.2 2004/01/31 02:17:22 porter 00015 * got rid of last(?) tabname limit 00016 * 00017 * Revision 1.1 2000/01/10 20:31:16 porter 00018 * modified StDbBroker to be an interface to the DB-interface, StDbLib. 00019 * - old functionality is retained for the short-term & modifications 00020 * are extensions 00021 * 00022 * 00023 **************************************************************************/ 00024 #ifndef DBCONFIG_H 00025 #define DBCONFIG_H 00026 // 00027 //:Description:: hierarchy of tables accessed via StDbBroker 00028 // 00029 00030 struct dbConfig_st { 00031 00032 char tabname[64]; // named reference to table or node 00033 int tabID; // StDbBroker's table ID 00034 char tabtype[64]; // type of table or node referenced 00035 char parname[64]; // named reference of parent to table or node referenced 00036 int parID; // StDbBroker's parent ID 00037 00038 }; 00039 00040 #endif
1.5.9