mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 22:54:38 +02:00
11 lines
214 B
C++
11 lines
214 B
C++
#pragma once
|
|
|
|
class BasePageContainer
|
|
{
|
|
public:
|
|
virtual ~BasePageContainer(){};
|
|
virtual bool selectPage(QString pageId) = 0;
|
|
virtual void refreshContainer() = 0;
|
|
virtual bool requestClose() = 0;
|
|
};
|