Audacity 3.2.0
VersionPatch.h
Go to the documentation of this file.
1/*!********************************************************************
2 Audacity: A Digital Audio Editor
3
4 @file VersionPatch.h
5 @brief Declare a structure that describes patch fields.
6
7 Anton Gerasimov
8 **********************************************************************/
9#pragma once
10
11#include "VersionId.h"
12
14struct VersionPatch final
15{
16 using UpdateDataFormat = std::string;
17
18 VersionPatch() = default;
19
21 wxArrayString changelog;
22 wxString download;
23};
Declare a class with version number manipulation.
A class, that supports base manipulation with version number.
Definition: VersionId.h:19
A structure that describes patch fields.
Definition: VersionPatch.h:15
VersionId version
Definition: VersionPatch.h:20
wxArrayString changelog
Definition: VersionPatch.h:21
std::string UpdateDataFormat
Definition: VersionPatch.h:16
VersionPatch()=default
wxString download
Definition: VersionPatch.h:22