sim: Include object header files in SWIG interfaces
[gem5.git] / src / base / CPA.py
1 from m5.SimObject import SimObject
2 from m5.params import *
3
4 class CPA(SimObject):
5 type = 'CPA'
6 cxx_header = "base/cp_annotate.hh"
7
8 enabled = Param.Bool(False, "Is Annotation enabled?")
9 user_apps = VectorParam.String([], "List of apps to get symbols for")