blob: 6a4da037143e3d6b1472282d68aff83b106aaeec [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.simulated.temperature.generator.internal;
import org.eclipse.sensinact.gateway.common.bundle.Mediator;
import org.eclipse.sensinact.gateway.generic.packet.SimplePacketReader;
public abstract class TemperaturesGeneratorAbstractPacketReader extends SimplePacketReader<TemperaturesGeneratorAbstractPacket> {
public TemperaturesGeneratorAbstractPacketReader(Mediator mediator) {
super(mediator);
}
}