Valentin Shergin 711abeda79 Fabric: Using enum class for some graphics types
Summary:
`enum class` types do not provide default conversion to integers and reguire use typename before value names.
This must prevent bugs like the previous one where we used `Undefined` as a number value.

Reviewed By: fkgozali

Differential Revision: D7554548

fbshipit-source-id: b19379aae48c9aebe03043e08cf3acc712da3cb8
2018-04-10 17:15:08 -07:00

34 lines
583 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
namespace facebook {
namespace react {
/*
* Defines visibility of the shadow node and partucular layout
* engine which should be used for laying out the node.
*/
enum class DisplayType {
None,
Flex,
Inline,
};
/*
* User interface layout direction.
*/
enum class LayoutDirection {
Undefined,
LeftToRight,
RightToLeft,
};
} // namespace react
} // namespace facebook