/** * Copyright (C) 2014 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.sesame.fedfundsfuture; import com.opengamma.util.money.MultipleCurrencyAmount; import com.opengamma.util.result.Result; /** * Federal funds future calculators. */ public interface FedFundsFutureCalculator { Result<MultipleCurrencyAmount> calculatePV(); }