15 lines
353 B
C++
15 lines
353 B
C++
// Filename: config_setup.h
|
|
// Created by: cary (20Mar00)
|
|
//
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __CONFIG_SETUP_H__
|
|
#define __CONFIG_SETUP_H__
|
|
|
|
#include <string>
|
|
|
|
// use 8-bit chars for now. Change this line to make config switch to wchar
|
|
typedef std::string ConfigString;
|
|
|
|
#endif /* __CONFIG_SETUP_H__ */
|