The design of traits is as much art as anything else. There are no hard and
fast answers here. I believe this question has gone unanswered because it is
impossible to give a good answer without knowing a lot more about the problem
you are solving.
In general traits classes are a useful "customization point". That is, if you
are designing a template:
template <class Tile>
class TileContainer
{
...
};
TileContainer might make use of tile_traits<Tile> for some properties of Tile.
And the client of TileContainer can specialize tile_traits<MyTile> in order to
communicate variations of the properties when the default trait (if it exists)
is not correct.
So far I don't think I've said anything you don't already know (judging from
the way your question is worded).
I think your question is:
Should you design:
A)
template <class Tile, class Traits = tile_traits<Tile>>
class TileContainer
{
// uses Traits
};
or:
B)
template <class Tile>
class TileContainer
{
// uses tile_traits<Tile>
};
There are examples of both designs in the C++03 and upcoming C++0x standards.
Example A designs:
template<class charT, class traits = char_traits<charT>,
class Allocator = allocator<charT>>
class basic_string; // both traits and Allocator are traits
template <class Codecvt, class Elem = wchar_t,
class Tr = char_traits<Elem>>
class wbuffer_convert;
template <class T, class Allocator = allocator<T>>
class vector; // Allocator is a A-trait that uses another
// B-trait internally: allocator_traits<Allocator>
template <class charT, class traits = regex_traits<charT>>
class basic_regex;
Example B designs:
template<class Iterator> struct iterator_traits;
template <class Alloc> struct allocator_traits;
template <class Ptr> struct pointer_traits;
template <class Rep> struct treat_as_floating_point;
template <class Rep> struct duration_values;
My only advice is that there is no right or wrong design. Use:
template <class Tile>
class TileContainer
{
// uses tile_traits<Tile>
};
when you are sure that your customer's needs can always be met by specializing
tile_traits<MyTile>.
Use:
template <class Tile, class Traits = tile_traits<Tile>>
class TileContainer
{
// uses Traits
};
when you suspect that your customer may need different traits for the same
Tile, or when you want to force the type of TileContainer to be different when
some trait other than tile_traits is used.