Juergen Vigna <[EMAIL PROTECTED]> writes:

| On 04-May-2000 Lars Gullik Bjønnes wrote:
| > 
| > a vector<vector<cellstruct> > might work, or a Matrix class that build
| > upon this.
| > 
| 
| Row and Column Data is now a vector, but can you tell me how I do address
| a stuff like the above? How do I do a v.push_back() for example?

why do you want a push_back?

access: vector<vector<cellstruct> > table(10, vector<cellstruct>(10,
cellstruct(...));

would be a way to set it up, then

table[column][row] to access cells.

        Lgb

Reply via email to