11 lines
133 B
C
11 lines
133 B
C
|
#ifndef TEST_TRAITS_H
|
||
|
#define TEST_TRAITS_H
|
||
|
|
||
|
template <class charT>
|
||
|
struct test_traits
|
||
|
{
|
||
|
typedef charT char_type;
|
||
|
};
|
||
|
|
||
|
#endif
|