chromium/third_party/icu/source/i18n/numparse_scientific.cpp

// © 2018 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

#include "unicode/utypes.h"

#if !UCONFIG_NO_FORMATTING

// Allow implicit conversion from char16_t* to UnicodeString for this file:
// Helpful in toString methods and elsewhere.
#define UNISTR_FROM_STRING_EXPLICIT

#include "numparse_types.h"
#include "numparse_scientific.h"
#include "static_unicode_sets.h"
#include "string_segment.h"

usingnamespaceicu;
usingnamespaceicu::numparse;
usingnamespaceicu::numparse::impl;


namespace {

inline const UnicodeSet& minusSignSet() {}

inline const UnicodeSet& plusSignSet() {}

} // namespace


ScientificMatcher::ScientificMatcher(const DecimalFormatSymbols& dfs, const Grouper& grouper)
        :{}

bool ScientificMatcher::match(StringSegment& segment, ParsedNumber& result, UErrorCode& status) const {}

bool ScientificMatcher::smokeTest(const StringSegment& segment) const {}

UnicodeString ScientificMatcher::toString() const {}


#endif /* #if !UCONFIG_NO_FORMATTING */