Containers.hpp 442 B

12345678910111213141516171819202122232425
  1. ///
  2. /// \file Proxy/Containers.hpp
  3. ///
  4. /// Common typedefs for stl containers of type Proxy.
  5. ///
  6. /// \copyright
  7. /// Copyright (c) 2013-2014 Josh Blum
  8. /// SPDX-License-Identifier: BSL-1.0
  9. ///
  10. #pragma once
  11. #include <Pothos/Proxy.hpp>
  12. #include <vector>
  13. #include <set>
  14. #include <map>
  15. namespace Pothos {
  16. typedef std::vector<Proxy> ProxyVector;
  17. typedef std::set<Proxy> ProxySet;
  18. typedef std::map<Proxy, Proxy> ProxyMap;
  19. } // namespace Pothos