Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. void ProcList::pushBack( int procId, int time, char state )
  2. {
  3.    ProcListElement *newEle = new ProcListElement( procId, time, state );
  4.    if (head == NULL)
  5.        head = newEle;
  6.    else
  7.        tail->next = newEle;
  8.    tail = newEle;
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement