2019-11-23 20:34:24 +00:00
|
|
|
#include "StdAfx.h"
|
2020-06-24 08:34:01 +01:00
|
|
|
|
2020-12-20 16:35:44 +00:00
|
|
|
#include "Interface.h"
|
|
|
|
#include "linux/duplicates/PropertySheet.h"
|
2020-12-27 20:25:42 +00:00
|
|
|
#include "linux/linuxframe.h"
|
2020-12-20 16:35:44 +00:00
|
|
|
|
|
|
|
IPropertySheet& GetPropertySheet()
|
|
|
|
{
|
|
|
|
static CPropertySheet sg_PropertySheet;
|
|
|
|
return sg_PropertySheet;
|
|
|
|
}
|
2020-12-27 20:25:42 +00:00
|
|
|
|
|
|
|
FrameBase& GetFrame()
|
|
|
|
{
|
|
|
|
static LinuxFrame sg_LinuxFrame;
|
|
|
|
return sg_LinuxFrame;
|
|
|
|
}
|