chromium/third_party/libaddressinput/src/cpp/src/util/re2ptr.h

// Copyright (C) 2014 Google Inc.
//
// 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.
//
// Work-around for problems with the RE2 library. Must be the first #include
// statement in the compilation unit. Do not #include in other header files.

#ifndef I18N_ADDRESSINPUT_UTIL_RE2PTR_H_
#define I18N_ADDRESSINPUT_UTIL_RE2PTR_H_

// RE2 will, in some environments, define class RE2 inside namespace re2 and
// then have a public "using re2::RE2;" statement to bring that definition into
// the root namespace, while in other environments it will define class RE2
// directly in the root namespace.
//
// Because of that, it's impossible to write a portable forward declaration of
// class RE2.
//
// The work-around in this file works by wrapping pointers to RE2 object in the
// simple structs RE2PlainPtr and RE2ptr, which are trivial to forward declare.

#include <re2/re2.h>

namespace i18n {
namespace addressinput {

// A non-owner pointer to an RE2 instance. Since this is POD, it can be
// initialized statically to NULL without a C++ static constructor.
struct RE2PlainPtr {};

// This is an owning pointer to an RE2 instance.
struct RE2ptr {};

}  // namespace addressinput
}  // namespace i18n

#endif  // I18N_ADDRESSINPUT_UTIL_RE2PTR_H_