summaryrefslogtreecommitdiff
path: root/src/systemc/sc_event.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/sc_event.hh')
-rw-r--r--src/systemc/sc_event.hh17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/systemc/sc_event.hh b/src/systemc/sc_event.hh
index 0da36f239..98a16bd0c 100644
--- a/src/systemc/sc_event.hh
+++ b/src/systemc/sc_event.hh
@@ -43,6 +43,23 @@ class sc_event_or_expr;
class sc_object;
class sc_port_base;
+class sc_event_finder
+{
+ protected:
+ void warn_unimpl(const char *func) const;
+};
+
+template <class IF>
+class sc_event_finder_t : public sc_event_finder
+{
+ public:
+ sc_event_finder_t(const sc_port_base &,
+ const sc_event & (IF::*event_method)() const)
+ {
+ warn_unimpl(__PRETTY_FUNCTION__);
+ }
+};
+
class sc_event_and_list
{
public: