Program Listing for File AlwaysEvent.hpp

Return to documentation for file (include/dish2/events/AlwaysEvent.hpp)

#pragma once
#ifndef DISH2_EVENTS_ALWAYSEVENT_HPP_INCLUDE
#define DISH2_EVENTS_ALWAYSEVENT_HPP_INCLUDE

#include "../peripheral/readable_state/ReadableState.hpp"

namespace dish2 {

template<typename Spec>
struct AlwaysEvent {

  template< typename Cardinal, size_t SeriesIdx >
  static bool Test( Cardinal& ) { return true; }

};

} // namespace dish2

#endif // #ifndef DISH2_EVENTS_ALWAYSEVENT_HPP_INCLUDE