python.hh (13038:7bf84150855b) python.hh (13323:1cfcaaf573b9)
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{
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 *next;
41
40 PythonReadyFunc();
41 ~PythonReadyFunc() {}
42 virtual void run() = 0;
43};
44
45struct PythonInitFunc
46{
42 PythonReadyFunc();
43 ~PythonReadyFunc() {}
44 virtual void run() = 0;
45};
46
47struct PythonInitFunc
48{
49 PythonInitFunc *next;
50
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__
51 PythonInitFunc();
52 ~PythonInitFunc() {}
53 virtual void run(pybind11::module &systemc) = 0;
54};
55
56} // namespace sc_gem5
57
58#endif //__SYSTEMC_CORE_PYTHON_HH__