1*89f6b26fSZixu Wang //===- ExtractAPI/Serialization/SerializerBase.cpp --------------*- C++ -*-===// 2*89f6b26fSZixu Wang // 3*89f6b26fSZixu Wang // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*89f6b26fSZixu Wang // See https://llvm.org/LICENSE.txt for license information. 5*89f6b26fSZixu Wang // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*89f6b26fSZixu Wang // 7*89f6b26fSZixu Wang //===----------------------------------------------------------------------===// 8*89f6b26fSZixu Wang /// 9*89f6b26fSZixu Wang /// \file 10*89f6b26fSZixu Wang /// This file implements the APISerializer interface. 11*89f6b26fSZixu Wang /// 12*89f6b26fSZixu Wang //===----------------------------------------------------------------------===// 13*89f6b26fSZixu Wang 14*89f6b26fSZixu Wang #include "clang/ExtractAPI/Serialization/SerializerBase.h" 15*89f6b26fSZixu Wang #include "llvm/Support/raw_ostream.h" 16*89f6b26fSZixu Wang 17*89f6b26fSZixu Wang using namespace clang::extractapi; 18*89f6b26fSZixu Wang serialize(llvm::raw_ostream & os)19*89f6b26fSZixu Wangvoid APISerializer::serialize(llvm::raw_ostream &os) {} 20