Deleted Added
sdiff udiff text old ( 13038:7bf84150855b ) new ( 13323:1cfcaaf573b9 )
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

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

32
33#include "python/pybind11/pybind.hh"
34
35namespace sc_gem5
36{
37
38struct PythonReadyFunc
39{
40 PythonReadyFunc();
41 ~PythonReadyFunc() {}
42 virtual void run() = 0;
43};
44
45struct PythonInitFunc
46{
47 PythonInitFunc();
48 ~PythonInitFunc() {}
49 virtual void run(pybind11::module &systemc) = 0;
50};
51
52} // namespace sc_gem5
53
54#endif //__SYSTEMC_CORE_PYTHON_HH__