Hi,
i want to write an wrapper for different Array Classes with different Policies.
For example:
typedef ArrayType<useValArray,StdAllocator> Array; // one global assignment
I want to use the class like a blitz++ Array
for example:
Array<double,2> x(2,2); //maps the Array to an Valarray or to a Blitz++ Array
Array<double,2> x2(5,6);
is this Posible? Which technics i need to realise that?