aboutsummaryrefslogtreecommitdiffstats
path: root/src/cubase_project.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cubase_project.rs')
-rw-r--r--src/cubase_project.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cubase_project.rs b/src/cubase_project.rs
index 498936d..b58bbc9 100644
--- a/src/cubase_project.rs
+++ b/src/cubase_project.rs
@@ -18,15 +18,16 @@
/**
* A struct to hold the information about a Cubase project.
*/
-#[derive(Debug, Default)]
+#[derive(Clone, Debug, Default)]
pub struct CubaseProject {
pub app_version: PAppVersion,
+ pub arrangement: PArrangement,
}
/*
* Version information about the app that created the file.
*/
-#[derive(Debug, Default)]
+#[derive(Clone, Debug, Default)]
pub struct PAppVersion {
pub appname: String,
pub appversion: String,
@@ -38,6 +39,6 @@ pub struct PAppVersion {
pub applocale: String,
}
-#[derive(Debug, Default)]
+#[derive(Clone, Debug, Default)]
pub struct PArrangement {
}