Skip to content

Commit

Permalink
Update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
dasdranagon committed Dec 30, 2024
1 parent 35a469f commit 944a55c
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 0 deletions.
17 changes: 17 additions & 0 deletions metronome/src/androidMain/kotlin/DefaultMetronomeMediaPlayer.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

import android.media.AudioAttributes
Expand Down
17 changes: 17 additions & 0 deletions metronome/src/commonMain/kotlin/DefaultMetronome.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

import com.splendo.kaluga.logging.error
Expand Down
17 changes: 17 additions & 0 deletions metronome/src/commonMain/kotlin/DefaultMetronomeMediaPlayer.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

import com.splendo.kaluga.media.MediaSource
Expand Down
17 changes: 17 additions & 0 deletions metronome/src/commonMain/kotlin/Metronome.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

import kotlinx.coroutines.flow.Flow
Expand Down
17 changes: 17 additions & 0 deletions metronome/src/commonMain/kotlin/MetronomeError.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

sealed class MetronomeError(message: String) : Error(message) {
Expand Down
17 changes: 17 additions & 0 deletions metronome/src/commonMain/kotlin/MetronomeMediaPlayer.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

interface MetronomeMediaPlayer : AutoCloseable {
Expand Down
17 changes: 17 additions & 0 deletions metronome/src/iosMain/kotlin/DefaultMetronomeMediaPlayer.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/*
Copyright 2024 Splendo Consulting B.V. The Netherlands
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.splendo.kaluga.metronome

import com.splendo.kaluga.media.MediaSource
Expand Down

0 comments on commit 944a55c

Please sign in to comment.