Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. struct Config
  2. {
  3. using BindingContainer = std::map<ID, std::vector<Binding>>;
  4. using BindingIterator = BindingContainer::const_iterator;
  5.  
  6. boost::iterator_range<BindingIterator> bindings(ID id) const;
  7. private:
  8. BindingContainer m_bindings;
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement