mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-05 07:07:38 +03:00
18 lines
528 B
C++
18 lines
528 B
C++
#pragma once
|
|
#include <functional>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "../ListSelectionActivity.h"
|
|
|
|
class RefreshFrequencySelectionActivity final : public ListSelectionActivity {
|
|
std::vector<std::string> options; // Refresh frequency options
|
|
|
|
protected:
|
|
void loadItems() override; // Called by base class onEnter
|
|
|
|
public:
|
|
explicit RefreshFrequencySelectionActivity(GfxRenderer& renderer, MappedInputManager& mappedInput,
|
|
const std::function<void()>& onBack);
|
|
};
|