Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. struct MyData{
  2. MyData(const BYTE* pData, size_t uSize)
  3. : bucket_(pData, pData + uSize)
  4. {}
  5. std::vector<BYTE> bucket_;
  6. };
  7.  
  8. template <class InputIterator>
  9. vector(InputIterator first, InputIterator last, const Allocator& = Allocator());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement