~bwy/+junk/gnash-temp

« back to all changes in this revision

Viewing changes to libbase/BitsReader.h

  • Committer: Bastiaan Jacques
  • Date: 2010-03-11 01:47:08 UTC
  • Revision ID: bastiaan@bjacques.org-20100311014708-lova2fxknroqrpem
Another header shuffle:
- Add includes for libstdc++ types in files where they are actually used.
- Remove unused includes; move them to .cpp files where appropriate.
- Forward-declare some classes instead of including their headers. Add 
  these include directives to .cpp files as needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define BITSREADER_H
24
24
 
25
25
#include "dsodefs.h"
26
 
#include "GnashException.h"
27
26
#include "log.h"
28
27
 
29
 
#include <cassert> // for assert used in this file
30
28
#include <sstream>
 
29
#include <cassert>
31
30
#include <boost/cstdint.hpp> // for boost::uint32_t used in this file
32
31
 
33
32
namespace gnash {