Search:

Type: Posts; User: Timo002

Search: Search took 0.00 seconds.

  1. I've used the following code, and it worked. ...

    I've used the following code, and it worked.


    CClasseB*** p = new CClasseB**[rows];
    for (int i = 0; i != rows; ++i)
    {
    p[i] = new CClasseB*[cols];
    for (int j = 0; j != cols; ++j) ...
  2. Well, this is actually not the problem, but I...

    Well, this is actually not the problem, but I wanted to indicate that something was going wrong.

    The m_pPointer is declared as follows:


    CClassB **m_pPointer;
  3. two-dimensional dynamic array of pointers to classes

    Hello, I've got the following problem:

    I want a two-dimensional dynamic array of pointers to classes. In the two dimensional dynamic array will be pointers to another class. So that I can call...
Results 1 to 3 of 3