2017-02-09 23:07:43 +01:00
|
|
|
// Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_DLL_CTOCPP_BASE_REF_COUNTED_CTOCPP_H_
|
|
|
|
#define CEF_LIBCEF_DLL_CTOCPP_BASE_REF_COUNTED_CTOCPP_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "include/capi/cef_base_capi.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "include/cef_base.h"
|
2017-02-09 23:07:43 +01:00
|
|
|
#include "libcef_dll/ctocpp/ctocpp_ref_counted.h"
|
|
|
|
|
|
|
|
#if !defined(BUILDING_CEF_SHARED)
|
|
|
|
#error This file can be included DLL-side only
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Wrap a C structure with a C++ class.
|
|
|
|
class CefBaseRefCountedCToCpp
|
2017-05-17 11:29:28 +02:00
|
|
|
: public CefCToCppRefCounted<CefBaseRefCountedCToCpp,
|
|
|
|
CefBaseRefCounted,
|
2017-02-09 23:07:43 +01:00
|
|
|
cef_base_ref_counted_t> {
|
|
|
|
public:
|
|
|
|
CefBaseRefCountedCToCpp();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_DLL_CTOCPP_BASE_REF_COUNTED_CTOCPP_H_
|