1 // Copyright (c) 2022 The Chromium Embedded Framework Authors. All rights 2 // reserved. Use of this source code is governed by a BSD-style license that 3 // can be found in the LICENSE file. 4 // 5 // --------------------------------------------------------------------------- 6 // 7 // This file was generated by the CEF translator tool. If making changes by 8 // hand only do so within the body of existing method and function 9 // implementations. See the translator.README.txt file in the tools directory 10 // for more information. 11 // 12 // $hash=4fbbd168e0d26ec54abf2e46808ab98da1900f5c$ 13 // 14 15 #ifndef CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ 16 #define CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ 17 #pragma once 18 19 #if !defined(WRAPPING_CEF_SHARED) 20 #error This file can be included wrapper-side only 21 #endif 22 23 #include "include/capi/cef_values_capi.h" 24 #include "include/cef_values.h" 25 #include "libcef_dll/ctocpp/ctocpp_ref_counted.h" 26 27 // Wrap a C structure with a C++ class. 28 // This class may be instantiated and accessed wrapper-side only. 29 class CefValueCToCpp 30 : public CefCToCppRefCounted<CefValueCToCpp, CefValue, cef_value_t> { 31 public: 32 CefValueCToCpp(); 33 virtual ~CefValueCToCpp(); 34 35 // CefValue methods. 36 bool IsValid() override; 37 bool IsOwned() override; 38 bool IsReadOnly() override; 39 bool IsSame(CefRefPtr<CefValue> that) override; 40 bool IsEqual(CefRefPtr<CefValue> that) override; 41 CefRefPtr<CefValue> Copy() override; 42 CefValueType GetType() override; 43 bool GetBool() override; 44 int GetInt() override; 45 double GetDouble() override; 46 CefString GetString() override; 47 CefRefPtr<CefBinaryValue> GetBinary() override; 48 CefRefPtr<CefDictionaryValue> GetDictionary() override; 49 CefRefPtr<CefListValue> GetList() override; 50 bool SetNull() override; 51 bool SetBool(bool value) override; 52 bool SetInt(int value) override; 53 bool SetDouble(double value) override; 54 bool SetString(const CefString& value) override; 55 bool SetBinary(CefRefPtr<CefBinaryValue> value) override; 56 bool SetDictionary(CefRefPtr<CefDictionaryValue> value) override; 57 bool SetList(CefRefPtr<CefListValue> value) override; 58 }; 59 60 #endif // CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_ 61