// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Music is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Background Music. If not, see . // // BGMXPCHelperService.h // BGMXPCHelper // // Copyright © 2016 Kyle Neideck // // Local Includes #import "BGMXPCProtocols.h" // System Includes #import // This object implements the protocol which we have defined. It provides the actual behavior for the service. It is // 'exported' by the service to make it available to the process hosting the service over an NSXPCConnection. @interface BGMXPCHelperService : NSObject - (id) initWithConnection:newConnection; @end