// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/qt/qt_interface.h" #include <cstdlib> #include <cstring> namespace qt { String::String() = default; String::String(const char* str) { … } String::String(String&& other) { … } String& String::operator=(String&& other) { … } String::~String() { … } Buffer::Buffer() = default; Buffer::Buffer(const uint8_t* data, size_t size) : … { … } Buffer::Buffer(Buffer&& other) { … } Buffer& Buffer::operator=(Buffer&& other) { … } Buffer::~Buffer() { … } uint8_t* Buffer::Take() { … } } // namespace qt