2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-27 13:25:35 +00:00
metaforce/specter/include/Specter/ScrollView.hpp
2015-12-01 15:32:15 -10:00

20 lines
305 B
C++

#ifndef SPECTER_SCROLLVIEW_HPP
#define SPECTER_SCROLLVIEW_HPP
#include "View.hpp"
namespace Specter
{
class ViewResources;
class ScrollView : public View
{
View& m_contentView;
public:
ScrollView(ViewResources& res, View& parentView, View& contentView);
};
}
#endif // SPECTER_SCROLLVIEW_HPP