blob: b9794d8b85ac1176c434351fd7f16281e9f2dad1 [file] [log] [blame]
Austin Schuh36244a12019-09-21 17:52:38 -07001//
2// Copyright 2019 The Abseil Authors.
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// https://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16// -----------------------------------------------------------------------------
17// File: declare.h
18// -----------------------------------------------------------------------------
19//
20// This file defines the ABSL_DECLARE_FLAG macro, allowing you to declare an
21// `absl::Flag` for use within a translation unit. You should place this
22// declaration within the header file associated with the .cc file that defines
23// and owns the `Flag`.
24
25#ifndef ABSL_FLAGS_DECLARE_H_
26#define ABSL_FLAGS_DECLARE_H_
27
Austin Schuhb4691e92020-12-31 12:37:18 -080028#include "absl/base/config.h"
Austin Schuh36244a12019-09-21 17:52:38 -070029
30namespace absl {
Austin Schuhb4691e92020-12-31 12:37:18 -080031ABSL_NAMESPACE_BEGIN
Austin Schuh36244a12019-09-21 17:52:38 -070032namespace flags_internal {
33
34// absl::Flag<T> represents a flag of type 'T' created by ABSL_FLAG.
35template <typename T>
36class Flag;
37
38} // namespace flags_internal
39
40// Flag
41//
42// Forward declaration of the `absl::Flag` type for use in defining the macro.
Austin Schuhb4691e92020-12-31 12:37:18 -080043#if defined(_MSC_VER) && !defined(__clang__)
Austin Schuh36244a12019-09-21 17:52:38 -070044template <typename T>
45class Flag;
46#else
47template <typename T>
48using Flag = flags_internal::Flag<T>;
49#endif
50
Austin Schuhb4691e92020-12-31 12:37:18 -080051ABSL_NAMESPACE_END
Austin Schuh36244a12019-09-21 17:52:38 -070052} // namespace absl
53
54// ABSL_DECLARE_FLAG()
55//
56// This macro is a convenience for declaring use of an `absl::Flag` within a
57// translation unit. This macro should be used within a header file to
58// declare usage of the flag within any .cc file including that header file.
59//
60// The ABSL_DECLARE_FLAG(type, name) macro expands to:
61//
62// extern absl::Flag<type> FLAGS_name;
63#define ABSL_DECLARE_FLAG(type, name) extern ::absl::Flag<type> FLAGS_##name
64
65#endif // ABSL_FLAGS_DECLARE_H_