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