DarkSpect

AdcEnc

Feb 2nd, 2012
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. GestEncs& GestEncs::operator + (const GestEncs ge){
  2.     Encomenda aux;
  3.     while(!ge.enc.vazia()){ //enc nome da variavel do tipo Queue<Encomenda>
  4.         ge.enc.retira(aux);
  5.         adicionaEncomenda(aux);
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment