// // SKConfiguration.m // SensingKit // // Copyright (c) 2014. Kleomenis Katevas // Kleomenis Katevas, minos.kat@gmail.com // // This file is part of SensingKit-iOS library. // For more information, please visit https://www.sensingkit.org // // SensingKit-iOS is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // SensingKit-iOS 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with SensingKit-iOS. If not, see . // #import "SKConfiguration.h" @implementation SKConfiguration - (id)copyWithZone:(NSZone *)zone { SKConfiguration *configuration = [[[self class] alloc] init]; return configuration; } - (BOOL)isValidForSensor:(SKSensorType)sensorType { // Internal Error. Should never happen. NSLog(@"Internal Error: isValidForSensor method is not implemented in the inherited SKConfiguration class."); abort(); } @end