mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-11-20 08:10:11 +00:00
9 lines
130 B
C
9 lines
130 B
C
|
#pragma once
|
||
|
|
||
|
class BasePageContainer
|
||
|
{
|
||
|
public:
|
||
|
virtual ~BasePageContainer(){};
|
||
|
virtual bool selectPage(QString pageId) = 0;
|
||
|
};
|