FooTraits
classにポリシーを提供する Visual Studio 2008 C++03 アプリケーションがありますFoo
。
struct FooTraits
{
enum { FooVal = 1 };
};
template< typename traits >
class Foo
{
public:
typedef typename traits::FooVal foo_val; // errors on this line
void FooDo( UINT matrix[ foo_val ] ) { /*...*/ };
};
typedef Foo< FooTraits > Foot;
int main( int argc, char* argv[] )
{
Foot f;
UINT matrix[ Foot::foo_val ] = { /*...*/ };
f.FooDo( matrix );
return 0;
}
しかし、私は一連のコンパイラエラーをすべて取得しますtypedef
:
error C2146: syntax error : missing ';' before identifier 'foo_val'
error C2838: 'FooVal' : illegal qualified name in member declaration
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
固定値を定義するポリシーを作成する正しい方法は何ですか?