// Copyright (C) 2020 // SPDX-FileCopyrightText: 2021 Harald Eilertsen // // SPDX-License-Identifier: GPL-3.0-or-later /** * A struct to hold the information about a Cubase project. */ #[derive(Clone, Debug, Default)] pub struct CubaseProject { pub app_version: PAppVersion, pub arrangement: PArrangement, } /* * Version information about the app that created the file. */ #[derive(Clone, Debug, Default)] pub struct PAppVersion { pub appname: String, pub appversion: String, pub appdate: String, pub num2: u32, pub apparch: String, pub num3: u32, pub appencoding: String, pub applocale: String, } #[derive(Clone, Debug, Default)] pub struct PArrangement { }