Valentin Shergin 52ed882332 Fabric: Using const ShadowNode & as a parameter in ShadowNode copy constructor
Summary:
@public
When we copy-construct ShadowNode, we don't need to retain a source shadow node, so there is no need to pass it as a `shared_ptr`. Passing an argument to constructor as `const &` is also more idiomatic in C++.

Reviewed By: mdvacca

Differential Revision: D8988384

fbshipit-source-id: 1279d9185fa1b4b82fd26e3040bd62fa9495b4d3
2018-08-04 09:47:30 -07:00

42 lines
810 B
C++

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <memory>
#include <fabric/components/view/AccessibilityProps.h>
#include <fabric/core/ShadowNode.h>
namespace facebook {
namespace react {
class AccessibleShadowNode;
using SharedAccessibleShadowNode = std::shared_ptr<const AccessibleShadowNode>;
class AccessibleShadowNode {
public:
#pragma mark - Constructors
AccessibleShadowNode() = default;
AccessibleShadowNode(
const SharedAccessibilityProps &props
);
AccessibleShadowNode(
const AccessibleShadowNode &shadowNode,
const SharedAccessibilityProps &props = nullptr
);
};
} // namespace react
} // namespace facebook