summaryrefslogtreecommitdiff
path: root/src/systemc/tests/tlm/static_extensions/ext2gp/my_extension.h
blob: 650931cd12d5e6eb521ca8212683f40a6d067152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*****************************************************************************

  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
  more contributor license agreements.  See the NOTICE file distributed
  with this work for additional information regarding copyright ownership.
  Accellera licenses this file to you under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with the
  License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  implied.  See the License for the specific language governing
  permissions 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)
    {
        sc_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