How can one write c++ web service methods corresponding to the following java 
methods using multidimensional arrays? 

public class test
{
        public void arr2in(int [][] arr) {}

        public int[][] arr2out()
        {
                return new int[2][3];
        }

        public void arr3in(int [][][] arr){}

        public int[][][] arr3out()
        {
                return new int[5][6][7];
        }
        public void arrtype3in(MyClass [][][]){}

        public MyClass [][][] arrtype3out()
        {
                return new MyClass[4][4][4];
        }
}

thanks.
---------------
Lanka Software Foundation  (http://www.opensource.lk)
Promoting Open-Source Development in Sri Lanka.
---------------

Reply via email to