// Copyright (C) 2009 The Libphonenumber Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Utility for international phone numbers. #ifndef I18N_PHONENUMBERS_PHONENUMBERUTIL_H_ #define I18N_PHONENUMBERS_PHONENUMBERUTIL_H_ #include <stddef.h> #include <list> #include <map> #include <set> #include <string> #include <utility> #include <vector> #include "phonenumbers/base/basictypes.h" #include "phonenumbers/base/memory/scoped_ptr.h" #include "phonenumbers/base/memory/singleton.h" #include "phonenumbers/phonenumber.pb.h" #include "absl/container/node_hash_set.h" #include "absl/container/node_hash_map.h" class TelephoneNumber; namespace i18n { namespace phonenumbers { RepeatedPtrField; string; class AsYouTypeFormatter; class Logger; class MatcherApi; class NumberFormat; class PhoneMetadata; class PhoneNumberDesc; class PhoneNumberRegExpsAndMappings; class RegExp; // NOTE: A lot of methods in this class require Region Code strings. These must // be provided using CLDR two-letter region-code format. These should be in // upper-case. The list of the codes can be found here: // http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html class PhoneNumberUtil : public Singleton<PhoneNumberUtil> { … }; } // namespace phonenumbers } // namespace i18n #endif // I18N_PHONENUMBERS_PHONENUMBERUTIL_H_