1
0
Fork 0

Initial revision.

This commit is contained in:
curt 1998-11-06 21:21:32 +00:00
parent c2ed65b6d7
commit 58f981a98b

23
fg_traits.hxx Normal file
View file

@ -0,0 +1,23 @@
#ifndef _FG_TRAITS_HXX
#define _FG_TRAITS_HXX
#include "Include/compiler.h"
#ifndef FG_HAVE_TRAITS
// Dummy up some char traits for now.
template<class charT> struct char_traits{};
FG_TEMPLATE_NULL
struct char_traits<char>
{
typedef char char_type;
typedef int int_type;
typedef streampos pos_type;
typedef streamoff off_type;
static int_type eof() { return EOF; }
};
#endif // FG_HAVE_TRAITS
#endif // _FG_TRAITS_HXX