#ifndef LIB_H #define LIB_H #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include // This file is a library containing several utilities that can be used throughout the program typedef std::basic_string UString; typedef std::string String; UString toUString(int i); String toCString(int i); UString toUString(String s); String toCString(UString s); UString noMarkup(UString in); #endif