mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
18 lines
490 B
C++
18 lines
490 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);
|
|
context->Embed<CHashEmbed>();
|
|
}
|
|
}
|