blob: 9094466403ee98e170b1014378a22898e5dc71e9 [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2006 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11
12// Originally comes from shared/commandlineflags/flags.h
13
14// Flags are defined and declared using DEFINE_xxx and DECLARE_xxx macros,
15// where xxx is the flag type. Flags are referred to via FLAG_yyy,
16// where yyy is the flag name. For intialization and iteration of flags,
17// see the FlagList class. For full programmatic access to any
18// flag, see the Flag class.
19//
20// The implementation only relies and basic C++ functionality
21// and needs no special library or STL support.
22
Henrik Kjellander67765182017-06-28 20:58:07 +020023#ifndef WEBRTC_BASE_FLAGS_H_
24#define WEBRTC_BASE_FLAGS_H_
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000025
26
Henrik Kjellander67765182017-06-28 20:58:07 +020027// This header is deprecated and is just left here temporarily during
28// refactoring. See https://bugs.webrtc.org/7634 for more details.
29#include "webrtc/rtc_base/flags.h"
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000030
Henrik Kjellander67765182017-06-28 20:58:07 +020031#endif // SHARED_COMMANDLINEFLAGS_FLAGS_H_