23 Dec
2010
23 Dec
'10
4:36 p.m.
On 23/12/10 17:28, Torri, Stephen CIV NSWCDD, W15 wrote:
I am looking for the code that enables me to do the following with Boost.Array:
boost::array
tmp = { { 4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1 } }; I would like to learn how to do this. I have need to easily initialize a 4x4 grid with data.
boost array does nothign special. Any class which is defined as a POD type (Plain Old Data) supports aggregate construction. To make a POD class, all memeber should be POD and public, dont inherit from anything and dont provide constructor.