Program Listing for File ema_config.hpp

Return to documentation for file (rcppsw/math/config/ema_config.hpp)

#pragma once

/*******************************************************************************
 * Includes
 ******************************************************************************/
#include "rcppsw/config/base_config.hpp"

/*******************************************************************************
 * Namespaces/Decls
 ******************************************************************************/
namespace rcppsw::math::config {

/*******************************************************************************
 * Structure Definitions
 ******************************************************************************/
struct ema_config final : public rcppsw::config::base_config {
  double alpha{0.0};
};

} /* namespace rcppsw::math::config */