Deleted Added
sdiff udiff text old ( 12929:6ed4226c66c7 ) new ( 12954:8ea3a185354c )
full compact
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 19 unchanged lines hidden (view full) ---

28 */
29
30#ifndef __SYSTEMC_EXT_CORE_SC_PRIM_HH__
31#define __SYSTEMC_EXT_CORE_SC_PRIM_HH__
32
33#include "sc_object.hh"
34#include "sc_time.hh"
35
36namespace sc_core
37{
38
39class sc_event;
40class sc_event_and_list;
41class sc_event_or_list;
42
43class sc_prim_channel : public sc_object
44{
45 public:
46 virtual const char *kind() const;
47
48 protected:
49 sc_prim_channel();
50 explicit sc_prim_channel(const char *);
51 virtual ~sc_prim_channel() {}
52
53 void request_update();
54 void async_request_update();
55 virtual void update() {}
56
57 void next_trigger();
58 void next_trigger(const sc_event &);
59 void next_trigger(const sc_event_or_list &);

--- 28 unchanged lines hidden (view full) ---

88 virtual void end_of_elaboration() {}
89 virtual void start_of_simulation() {}
90 virtual void end_of_simulation() {}
91
92 private:
93 // Disabled
94 sc_prim_channel(const sc_prim_channel &);
95 sc_prim_channel &operator = (const sc_prim_channel &);
96};
97
98} // namespace sc_core
99
100#endif //__SYSTEMC_EXT_CORE_SC_PRIM_HH__