7d6439fefd
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
17 lines
313 B
C++
17 lines
313 B
C++
#include "StdAfx.h"
|
|
|
|
#include "Interface.h"
|
|
#include "linux/duplicates/PropertySheet.h"
|
|
#include "linux/linuxframe.h"
|
|
|
|
IPropertySheet& GetPropertySheet()
|
|
{
|
|
static CPropertySheet sg_PropertySheet;
|
|
return sg_PropertySheet;
|
|
}
|
|
|
|
FrameBase& GetFrame()
|
|
{
|
|
static LinuxFrame sg_LinuxFrame;
|
|
return sg_LinuxFrame;
|
|
}
|