chromium/third_party/pdfium/core/fpdfapi/parser/cpdf_reference.h

// Copyright 2016 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#ifndef CORE_FPDFAPI_PARSER_CPDF_REFERENCE_H_
#define CORE_FPDFAPI_PARSER_CPDF_REFERENCE_H_

#include <set>

#include "core/fpdfapi/parser/cpdf_object.h"
#include "core/fxcrt/retain_ptr.h"
#include "core/fxcrt/unowned_ptr.h"

class CPDF_IndirectObjectHolder;

class CPDF_Reference final : public CPDF_Object {};

inline CPDF_Reference* ToReference(CPDF_Object* obj) {}

inline const CPDF_Reference* ToReference(const CPDF_Object* obj) {}

inline RetainPtr<CPDF_Reference> ToReference(RetainPtr<CPDF_Object> obj) {}

inline RetainPtr<const CPDF_Reference> ToReference(
    RetainPtr<const CPDF_Object> obj) {}

#endif  // CORE_FPDFAPI_PARSER_CPDF_REFERENCE_H_