URGENT!: confused about what to do for this class

ok, i have written a class Sequence, which has an array that holds unsigned longs. now i have to write another class ScoreList that records a sequence of unsigned longs. it is indicated in the spec that i need to implement a data member of type Sequence that uses unsigned longs. however, it cannot be a pointer. i am very confused because i do not use a pointer. how am i suppose to access Sequence's data without a Sequence pointer?! i will provide a link to the spec just in case below. it will be under homework 1 on the side. thanks.

http://cs.ucla.edu/classes/winter10/cs32/

1
2
3
class ScoreList {
    Sequence scores;
};


Topic archived. No new replies allowed.