Audacity 3.2.0
CloudProjectMixdownUtils.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*!********************************************************************
3
4 Audacity: A Digital Audio Editor
5
6 CloudProjectMixdownUtils.h
7
8 Dmitry Vedenko
9
10**********************************************************************/
11#pragma once
12
13#include <cstdint>
14#include <functional>
15#include <string_view>
16
17class AudacityProject;
18
20{
21class UploadUrls;
22enum class MixdownState : uint32_t;
23
24bool HandleMixdownLink(std::string_view link);
25
26void UploadMixdown(
28 std::function<void(AudacityProject&, MixdownState)> onComplete);
29} // namespace audacity::cloud::audiocom::sync
const auto project
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
Definition: Project.h:90
void UploadMixdown(AudacityProject &project, std::function< void(AudacityProject &, MixdownState)> onComplete)
bool HandleMixdownLink(std::string_view uri)