stoneharry

Untitled

Feb 15th, 2013
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. void test()
  2. {
  3.     vector<Pixel> Pixels;
  4.     Pixel cPixel = {0,0,0};
  5.     Pixels.push_back(cPixel);
  6.     Pixels.push_back(cPixel);
  7.     Pixels.push_back(cPixel);
  8.  
  9.     cPixel = Pixels.back();
  10.     Pixels.pop_back();
  11.     Pixels.back();
  12.    
  13. }
Advertisement
Add Comment
Please, Sign In to add comment