mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
18 lines
512 B
C++
18 lines
512 B
C++
#include "Default.h"
|
|
|
|
#include "./ZipEmbed.h"
|
|
#include "./TextMeasurerEmbed.h"
|
|
#include "./MemoryStreamEmbed.h"
|
|
#include "./HashEmbed.h"
|
|
|
|
namespace NSJSBase
|
|
{
|
|
void CreateDefaults(JSSmart<CJSContext>& context)
|
|
{
|
|
CZipEmbed::CreateObjectInContext("CreateNativeZip", context);
|
|
CTextMeasurerEmbed::CreateObjectInContext("CreateNativeTextMeasurer", context);
|
|
CMemoryStreamEmbed::CreateObjectInContext("CreateNativeMemoryStream", context);
|
|
CHashEmbed::CreateObjectInContext("CreateNativeHash", context);
|
|
}
|
|
}
|