Added static CreateArray function to docbuilder

This commit is contained in:
Mikhail Lobotskiy
2023-09-28 16:30:04 +04:00
parent 23e17b5875
commit 4e281f55fc
2 changed files with 13 additions and 0 deletions

View File

@ -199,6 +199,11 @@ namespace NSDoctRenderer
* Creates a null value. This method returns the current context and calls its CreateNull method.
*/
static CDocBuilderValue CreateNull();
/**
* Please use CDocBuilderContext::CreateArray
* Creates an array. This method returns the current context and calls its CreateArray method.
*/
static CDocBuilderValue CreateArray(const int& length);
public:
/**