Archived
1
This repository has been archived on 2020-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tagtunes/TagTunes/iTunes.swift
Kim Wittenburg 0a485ff42a Stuff…
2019-02-01 22:59:01 +01:00

23 lines
824 B
Swift
Executable File

//
// iTunes.swift
// Harmony
//
// Created by Kim Wittenburg on 14.04.15.
// Copyright (c) 2015 Das Code Kollektiv. All rights reserved.
//
import Foundation
import SearchAPI
/// The Cocoa Scripting Bridge interface of iTunes.
public let iTunes = iTunesApplication(bundleIdentifier: "com.apple.iTunes")!
/// A pasteboard type for `TagTunesTrack` objects. This type is used for dragging
/// tracks in TagTunes. It's data should be a single encoded `TagTunesTrack`
/// object.
public let TrackPboardType = "public.item.tagtunestrack"
/// A pasteboard type for `Int`s. The specific use of this type is not specified.
/// This pasteboard type should only be used for private purposes (for example to
/// *remember* the original indexes of dragged items in a table view).
public let IndexPboardType = "public.item.index"