[WASAPI] fix stream types and frequencies enumeration
[xbmc.git] / xbmc / pictures / metadata / Iptc.h
blob71bb80a6c366f0f83135d4b0e40b4b6987bf2b6f
1 /*
2 * Copyright (C) 2023 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include <string>
13 struct IPTCInfo
15 IPTCInfo() = default;
16 IPTCInfo(const IPTCInfo&) = default;
17 IPTCInfo(IPTCInfo&&) = default;
19 IPTCInfo& operator=(const IPTCInfo&) = default;
20 IPTCInfo& operator=(IPTCInfo&&) = default;
22 std::string RecordVersion;
23 std::string SupplementalCategories;
24 std::string Keywords;
25 std::string Caption;
26 std::string Author;
27 std::string Headline;
28 std::string SpecialInstructions;
29 std::string Category;
30 std::string Byline;
31 std::string BylineTitle;
32 std::string Credit;
33 std::string Source;
34 std::string CopyrightNotice;
35 std::string ObjectName;
36 std::string City;
37 std::string State;
38 std::string Country;
39 std::string TransmissionReference;
40 std::string Date;
41 std::string Urgency;
42 std::string ReferenceService;
43 std::string CountryCode;
44 std::string TimeCreated;
45 std::string SubLocation;
46 std::string ImageType;