blob: 49d4b53953a66b8ff8a010c826c6c695bb61a38d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* 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:
* Pierre Allard,
* Regent L'Archeveque,
* Sebastien Gemme - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.addons.sensors.gps.impl;
import org.eclipse.apogy.addons.sensors.gps.ApogyAddonsSensorsGPSFactory;
import org.eclipse.apogy.addons.sensors.gps.MarkedGPS;
import org.eclipse.apogy.common.geometry.data3d.PositionMarker;
public class ApogyAddonsSensorsGPSFacadeCustomImpl extends ApogyAddonsSensorsGPSFacadeImpl {
@Override
public MarkedGPS createMarkedGPS(PositionMarker marker) {
MarkedGPS markedGPS = ApogyAddonsSensorsGPSFactory.eINSTANCE.createMarkedGPS();
markedGPS.setMarker(marker);
return markedGPS;
}
} // ApogyAddonsSensorsGPSFacadeImpl