mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
16 lines
287 B
C++
16 lines
287 B
C++
#pragma once
|
|
|
|
#include "PascalStr.h"
|
|
#include "PLWidgets.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class ScrollBarWidget final : public WidgetSpec<ScrollBarWidget>
|
|
{
|
|
public:
|
|
explicit ScrollBarWidget(const WidgetBasicState &state);
|
|
|
|
bool Init(const WidgetBasicState &state) override;
|
|
};
|
|
}
|