Page 2 of 2

Re: Need Input on new project

Posted: Wed Jul 01, 2009 9:34 pm
by zodiac976
MarauderIIC wrote:
zodiac976 wrote:Can you show a small example of selecting by
criteria?

Code: Select all

void myFunc(int someParam) {
    Something* s; //s for "shorthand"
    s = myArray[someParam];
    s->doSomething();
}
Thanks that helps :mrgreen:.