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