Bitstream Interpretation Library (BIL)  0.1
BuswidthPattern.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #ifndef BIL_BUSWIDTHPATTERN_HPP
8 #define BIL_BUSWIDTHPATTERN_HPP
9 
10 #include <bitstream/Packet.hpp>
11 
12 
13 namespace bil {
14 
23  class BuswidthPattern: public Packet {
24  public:
25 
26  /**********************************************************************/
27  /* CONSTRUCTION / DESTRUCTION */
28  /**********************************************************************/
29 
34  virtual BuswidthPattern* clone() const;
35 
36 
37  /**********************************************************************/
38  /* VISITOR INTERFACE */
39  /**********************************************************************/
40 
45  virtual void accept(PacketVisitor& visitor) const;
46 
47  };
48 
49 }
50 
51 #endif