Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int Cell::getCandidateList(void) const
  2. {
  3. int i;
  4. for (vector<int>::iterator j = m_candidateList.begin(); j < m_candidateList.end(); j++)
  5. {
  6. i = *j;
  7. }
  8. return i;
  9. }
  10.  
  11. int getCandidateList(void) const; //create method to get candidate list
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement