adwaita-swift/Sources/Generation/GIR/Constructor.swift
david-swift d8de611510 Add support for auto-generated widget bindings
Additionally fix an update problem occurring with custom views
2024-01-22 21:45:31 +01:00

17 lines
269 B
Swift

//
// Constructor.swift
// Adwaita
//
// Created by david-swift on 14.01.24.
//
/// An initializer.
struct Constructor: Decodable {
/// The identifier of the C constructor.
var cIdentifier: String
/// The parameters.
var parameters: Parameters?
}