Files
react-native/ReactCommon/config/ReactNativeConfig.h
T
Valentin Shergin ede2c5031f Codemod: Clang-format for all files in ReactCommon directory
Summary:
We are moving towards 100%-prettified files. That's the first step when we apply Clang Format for `ReactCommon`.

Changelog: [Internal]

Reviewed By: mdvacca

Differential Revision: D20110895

fbshipit-source-id: 0a0ce4997cf1c3721b0b07ef78c1a57ce87d20f9
2020-02-25 19:52:27 -08:00

45 lines
1.2 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 <string>
namespace facebook {
namespace react {
/**
* ReactNative configuration as provided by the hosting app.
* Provide a sub-class implementation to allow app specific customization.
*/
class ReactNativeConfig {
public:
ReactNativeConfig();
virtual ~ReactNativeConfig();
virtual bool getBool(const std::string &param) const = 0;
virtual std::string getString(const std::string &param) const = 0;
virtual int64_t getInt64(const std::string &param) const = 0;
virtual double getDouble(const std::string &param) const = 0;
};
/**
* Empty configuration that will always provide "falsy" values.
*/
class EmptyReactNativeConfig : public ReactNativeConfig {
public:
EmptyReactNativeConfig();
bool getBool(const std::string &param) const override;
std::string getString(const std::string &param) const override;
int64_t getInt64(const std::string &param) const override;
double getDouble(const std::string &param) const override;
};
} // namespace react
} // namespace facebook