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