<DIV>Hi to all.<BR>Sorry for my English.<BR>I'm trying to use a boost::multi_array as a private member of a class.<BR>How I can specifying the number of elements for every dimensions into <BR>the constructor?</DIV> <DIV><BR>#include <iostream><BR>#include "boost/multi_array.hpp"</DIV> <DIV>using namespace std;</DIV> <DIV><BR>typedef boost::multi_array<int, 2> table;</DIV> <DIV>class X<BR>{<BR>public:<BR> X();<BR> ~X(){};<BR> // ...<BR> void do_something();<BR>private:<BR> table tab; <BR> boost::array<table::index, 2> dims;<BR> <BR>};</DIV> <DIV> </DIV> <DIV>X::X()<BR>{<BR> dims = {{3, 5}}; // fails<BR> table(dims); <BR>}</DIV> <DIV> </DIV> <DIV>int main()<BR>{<BR> X x;<BR> <BR> x.do_something();<BR> <BR> system("PAUSE"); <BR> return 0;<BR>}</DIV> <DIV> </DIV> <DIV>Thanks to all.<BR>Sergio</DIV><p> <hr size=1>Do you Yahoo!?<br> <a href="http://us.rd.yahoo.com/mail_us/taglines/aac/*http://promotions.yahoo.com/new_mail/static/ease.html">Yahoo! Mail Address AutoComplete</a> - You start. We finish.