📄 my_extension.h
字号:
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2008 by all Contributors. All Rights reserved. The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open Source License Version 3.0 (the "License"); You may not use this file except in compliance with such restrictions and limitations. You may obtain instructions on how to receive a copy of the License at http://www.systemc.org/. Software distributed by Contributors under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. *****************************************************************************/#ifndef __MY_EXTENSION_H__#define __MY_EXTENSION_H__#include "tlm.h"#include <cassert>class my_extension : public tlm::tlm_extension<my_extension>{public: my_extension() : m_data(0) {} tlm_extension_base* clone() const { return new my_extension(*this); } void free() { delete this; } void copy_from(tlm_extension_base const & e) { assert(typeid(this) == typeid(e)); m_data = static_cast<my_extension const &>(e).m_data; } int m_data;};struct my_extended_payload_types{ typedef tlm::tlm_base_protocol_types::tlm_payload_type tlm_payload_type; typedef tlm::tlm_base_protocol_types::tlm_phase_type tlm_phase_type;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -