/* -*- c++ -*- */ /* * Copyright 2013-2021 Sylvain Munaut * * This file is part of gr-fosphor * * SPDX-License-Identifier: GPL-3.0-or-later */ #pragma once #include #include #include namespace gr { namespace fosphor { /*! * \brief GLFW version of fosphor sink * \ingroup fosphor */ class GR_FOSPHOR_API glfw_sink_c : virtual public base_sink_c { public: typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of fosphor::glfw_sink_c. * * To avoid accidental use of raw pointers, fosphor::glfw_sink_c's * constructor is in a private implementation * class. fosphor::glfw_sink_c::make is the public interface for * creating new instances. */ static sptr make(); }; } // namespace fosphor } // namespace gr