mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
15 lines
420 B
C++
15 lines
420 B
C++
#include "Default.h"
|
|
|
|
#include "./ZipEmbed.h"
|
|
#include "./TextMeasurerEmbed.h"
|
|
#include "./MemoryStreamEmbed.h"
|
|
|
|
namespace NSJSBase
|
|
{
|
|
void CreateDefaults(JSSmart<CJSContext>& context) {
|
|
CZipEmbed::CreateObjectInContext("CreateNativeZip", context);
|
|
CTextMeasurerEmbed::CreateObjectInContext("CreateNativeTextMeasurer", context);
|
|
CMemoryStreamEmbed::CreateObjectInContext("CreateNativeMemoryStream", context);
|
|
}
|
|
}
|