aboutsummaryrefslogtreecommitdiffstats
path: root/src/cubase_project.rs
blob: 6149ab634f157849131d7b7791b21b2ef4deb0b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2020  <name of copyright holder>
// SPDX-FileCopyrightText: 2021 Harald Eilertsen <haraldei@anduin.net>
//
// 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 {
}