00001 00002 // 00003 // NAME: DataMgrDef.h 00004 // AUTHOR: Foo Hee Meng 00005 // Changed by: Chen Li Wen (June 29, 1998) 00006 // DATE: 20 Mar 1997 00007 // PRODUCT: Data Manager Constants ver 1.0 00008 // 00009 // DESCRIPTION: This is the constants file for the data manager classes. 00010 // 00011 // REFERENCE: 00012 // 00013 // CHANGES: 00014 // 00015 // NOTES: 00016 // 00017 // COPYRIGHT: Copyright (C) 1997 00018 // Resource Allocation and Scheduling Group 00019 // Department of Information Systems and Computer Science 00020 // National University of Singapore 00021 // All rights reserved. 00022 // 00024 00025 #ifndef _DATA_MGR_DEF_ 00026 #define _DATA_MGR_DEF_ 00027 00028 // BAP System Name 00029 const char SYSTEM_NAME[] = "BAP System Version 1.0"; 00030 00031 // Configuration Files 00032 const char CONFIG_GAPARAM_FILENAME[] = "ga.rc"; 00033 const char CONFIG_BPPARAM_FILENAME[] = "bp.rc"; 00034 00035 // Temporary File Names 00036 const char TEMP_VES_FILENAME[] = "_ves.tmp"; 00037 const char TEMP_SECT_FILENAME[] = "_sect.tmp"; 00038 const char TEMP_TRANS_FILENAME[] = "_trans.tmp"; 00039 const char TEMP_PRJ_FILENAME[] = "_prj.tmp"; 00040 const char TEMP_GAPARAM_FILENAME[] = "_gaparam.tmp"; 00041 const char TEMP_BPPARAM_FILENAME[] = "_bpparam.tmp"; 00042 const char TEMP_FINSOL_FILENAME[] = "_finsol.tmp"; 00043 const char TEMP_INTSOL_FILENAME[] = "_intsol.tmp"; 00044 const char TEMP_GATRACE_FILENAME[] = "_gatrace.tmp"; 00045 const char TEMP_BPTRACE_FILENAME[] = "_bptrace.tmp"; 00046 00047 // New File Names 00048 const char NEW_VES_FILENAME[] = "ves-new.dat"; 00049 const char NEW_SECT_FILENAME[] = "sect-new.dat"; 00050 const char NEW_TRANS_FILENAME[] = "trans-new.dat"; 00051 const char NEW_PRJ_FILENAME[] = "prj-new.dat"; 00052 const char NEW_GAPARAM_FILENAME[] = "gaparam-new.par"; 00053 const char NEW_BPPARAM_FILENAME[] = "bpparam-new.par"; 00054 const char NEW_FINSOL_FILENAME[] = "finsol-new.sol"; 00055 const char NEW_INTSOL_FILENAME[] = "intsol-new.sol"; 00056 const char NEW_GATRACE_FILENAME[] = "gatrace-new.trc"; 00057 const char NEW_BPTRACE_FILENAME[] = "bptrace-new.trc"; 00058 00059 // Temporary Files Used Only For BAP 1.0 00060 const char BAP_FINSOL_FILENAME[] = "__finsol.tmp"; 00061 const char BAP_GATRACE_FILENAME[] = "__gatrace.tmp"; 00062 const char BAP_BPTRACE_FILENAME[] = "--bptrace.tmp"; 00063 00064 #endif
1.4.4