// Copyright (c) 2022 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. // // --------------------------------------------------------------------------- // // This file was generated by the CEF translator tool. If making changes by // hand only do so within the body of existing method and function // implementations. See the translator.README.txt file in the tools directory // for more information. // // $hash=4fbbd168e0d26ec54abf2e46808ab98da1900f5c$ // #ifndef CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ #define CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ #pragma once #if !defined(WRAPPING_CEF_SHARED) #error This file can be included wrapper-side only #endif #include "include/capi/cef_values_capi.h" #include "include/cef_values.h" #include "libcef_dll/ctocpp/ctocpp_ref_counted.h" // Wrap a C structure with a C++ class. // This class may be instantiated and accessed wrapper-side only. class CefValueCToCpp : public CefCToCppRefCounted { public: CefValueCToCpp(); virtual ~CefValueCToCpp(); // CefValue methods. bool IsValid() override; bool IsOwned() override; bool IsReadOnly() override; bool IsSame(CefRefPtr that) override; bool IsEqual(CefRefPtr that) override; CefRefPtr Copy() override; CefValueType GetType() override; bool GetBool() override; int GetInt() override; double GetDouble() override; CefString GetString() override; CefRefPtr GetBinary() override; CefRefPtr GetDictionary() override; CefRefPtr GetList() override; bool SetNull() override; bool SetBool(bool value) override; bool SetInt(int value) override; bool SetDouble(double value) override; bool SetString(const CefString& value) override; bool SetBinary(CefRefPtr value) override; bool SetDictionary(CefRefPtr value) override; bool SetList(CefRefPtr value) override; }; #endif // CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_