blob: 22cc1f92dc8a0956f3def794c75297f6a70b6a9d [file] [log] [blame]
QUICHE team173c48f2019-11-19 16:34:44 -08001// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef THIRD_PARTY_QUICHE_PLATFORM_API_QUICHE_EXPORT_H_
6#define THIRD_PARTY_QUICHE_PLATFORM_API_QUICHE_EXPORT_H_
7
vasilvv9eec2162020-12-30 13:49:28 -08008#include "net/quiche/common/platform/impl/quiche_export_impl.h"
QUICHE team173c48f2019-11-19 16:34:44 -08009
10// quiche_export_impl.h defines the following macros:
11// - QUICHE_EXPORT is not meant to be used.
12// - QUICHE_EXPORT_PRIVATE is meant for QUICHE functionality that is built in
13// Chromium as part of //net, and not fully contained in headers.
14// - QUICHE_NO_EXPORT is meant for QUICHE functionality that is either fully
15// defined in a header, or is built in Chromium as part of tests or tools.
16
17#endif // THIRD_PARTY_QUICHE_PLATFORM_API_QUICHE_EXPORT_H_