mirror of
https://github.com/fn2006/PollyMC.git
synced 2025-09-14 01:25:38 -04: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;
|
|
};
|