• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 class BitStream {
2  public:
3   void Write(const char *inputByteArray, unsigned int numberOfBytes);
4   void Write(BitStream *bitStream, unsigned numberOfBits);
5   void Write1();
6 };
7