⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 extension_initiator_id.h

📁 SystemC Transaction Level Modelling. 是基于SystemC之上的总线互联协议
💻 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. *****************************************************************************//*==============================================================================  @file my_initiator_id_extension.h    @brief This is a generic payload extension    @details  This module defines the gp extension for the example. In this example, we  define an optional extension to be the string containing initiator ID.  =============================================================================*/   /*****************************************************************************  Original Authors:    Charles Wilson, ESLX    Anna Keist, ESLX    Bill Bunton, ESLX*****************************************************************************/#ifndef __EXTENSION_INITIATOR_ID_H__#define __EXTENSION_INITIATOR_ID_H__#include "tlm.h"                                    ///< TLM header#include <string>                                   ///< standard stringclass extension_initiator_id                        ///< extension class : public tlm::tlm_extension<extension_initiator_id> ///< tlm extension{  public:    typedef tlm::tlm_base_protocol_types::tlm_payload_type  tlm_payload_type;  typedef tlm::tlm_base_protocol_types::tlm_phase_type    tlm_phase_type;  extension_initiator_id                            ///< constructor  ( void  );     ~extension_initiator_id                           ///< destructor  ( void  );  void  copy_from  ( const tlm_extension_base &extension  );  tlm::tlm_extension_base*  clone                                             ///< clone operation  ( void  ) const;  // member variables  std::string m_initiator_id;                     ///< initiator ID string};/*struct extension_initiator_id_payload_types{};*/#endif /* __EXTENSION_INITIATOR_ID_H__ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -