From 8aa26e1de7306fba9b689a991530a2db55606263 Mon Sep 17 00:00:00 2001 From: ERLindeman Date: Fri, 27 Sep 2024 16:18:42 +0000 Subject: [PATCH] Update source header in source files --- android/src/lib.rs | 3 ++- core/src/lib.rs | 3 ++- gui/src/lib.rs | 3 ++- ios/src/lib.rs | 3 ++- main/src/main.rs | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/android/src/lib.rs b/android/src/lib.rs index 893c9518d..27c0bf520 100644 --- a/android/src/lib.rs +++ b/android/src/lib.rs @@ -1,9 +1,10 @@ // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// +// // Copyright 2024 — by The Lindemans, LLC // +// use core::BluetoothManager; pub struct AndroidBluetoothManager; diff --git a/core/src/lib.rs b/core/src/lib.rs index 728eb2060..34557af00 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -1,9 +1,10 @@ // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// +// // Copyright 2024 — by The Lindemans, LLC // +// pub trait BluetoothManager { fn connect(&self) -> Result<(), String>; fn read_data(&self) -> Result, String>; diff --git a/gui/src/lib.rs b/gui/src/lib.rs index 6187b7b29..576907420 100644 --- a/gui/src/lib.rs +++ b/gui/src/lib.rs @@ -1,9 +1,10 @@ // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// +// // Copyright 2024 — by The Lindemans, LLC // +// use leptos::*; use wasm_bindgen::prelude::*; use web_sys::{window, HtmlLinkElement, HtmlMetaElement}; diff --git a/ios/src/lib.rs b/ios/src/lib.rs index d6011e124..ebcf170f1 100644 --- a/ios/src/lib.rs +++ b/ios/src/lib.rs @@ -1,9 +1,10 @@ // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// +// // Copyright 2024 — by The Lindemans, LLC // +// use core::BluetoothManager; pub struct IosBluetoothManager; diff --git a/main/src/main.rs b/main/src/main.rs index e70f01d4f..3393398b9 100644 --- a/main/src/main.rs +++ b/main/src/main.rs @@ -1,9 +1,10 @@ // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. -// +// // Copyright 2024 — by The Lindemans, LLC // +// #[cfg(target_os = "android")] use android_io::connect_bluetooth;