/// /// \file Proxy/Containers.hpp /// /// Common typedefs for stl containers of type Proxy. /// /// \copyright /// Copyright (c) 2013-2014 Josh Blum /// SPDX-License-Identifier: BSL-1.0 /// #pragma once #include #include #include #include namespace Pothos { typedef std::vector ProxyVector; typedef std::set ProxySet; typedef std::map ProxyMap; } // namespace Pothos