45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#include "FabricUIManager.h"
|
|
#include "ShadowNode.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
FabricUIManager::FabricUIManager() {}
|
|
|
|
ShadowNodeRef FabricUIManager::createNode(int reactTag, std::string viewName, int rootTag, folly::dynamic props, void *instanceHandle) {
|
|
return std::make_shared<ShadowNode>(reactTag, viewName, rootTag, props, instanceHandle);
|
|
}
|
|
|
|
ShadowNodeRef FabricUIManager::cloneNode(const ShadowNodeRef &node) {
|
|
return nullptr;
|
|
}
|
|
|
|
ShadowNodeRef FabricUIManager::cloneNodeWithNewChildren(const ShadowNodeRef &node) {
|
|
return nullptr;
|
|
}
|
|
|
|
ShadowNodeRef FabricUIManager::cloneNodeWithNewProps(const ShadowNodeRef &node, folly::dynamic props) {
|
|
return nullptr;
|
|
}
|
|
|
|
ShadowNodeRef FabricUIManager::cloneNodeWithNewChildrenAndProps(const ShadowNodeRef &node, folly::dynamic newProps) {
|
|
return nullptr;
|
|
}
|
|
|
|
void FabricUIManager::appendChild(const ShadowNodeRef &parentNode, const ShadowNodeRef &childNode) {
|
|
}
|
|
|
|
ShadowNodeSetRef FabricUIManager::createChildSet(int rootTag) {
|
|
return nullptr;
|
|
}
|
|
|
|
void FabricUIManager::appendChildToSet(const ShadowNodeSetRef &childSet, const ShadowNodeRef &childNode) {
|
|
}
|
|
|
|
void FabricUIManager::completeRoot(int rootTag, const ShadowNodeSetRef &childSet) {
|
|
}
|
|
|
|
}}
|