Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Aug 9th, 2010 | Syntax: C++ | Size: 0.18 KB | Hits: 43 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. class IntList
  2. {
  3. private:
  4.   int m_anList[10];
  5. public:
  6.   int& operator[] (const int nIndex);
  7. };
  8.  
  9. int& IntList::operator[] (const int nIndex)
  10.  
  11. {
  12.   return m_anList[nIndex];
  13. }