bitvect: implement a dynamic bit-vector class.

* src/misc/bitvect.cc, src/misc/bitvect.hh: New files.
* src/misc/Makefile.am: Add them.
* src/tgbatest/bitvect.cc, src/tgbatest/bitvect.test: New files.
* src/tgbatest/Makefile.am: Add them.
This commit is contained in:
Alexandre Duret-Lutz 2013-07-24 19:21:08 +02:00
parent dfc5ff95e5
commit 5a3b1a9905
6 changed files with 877 additions and 0 deletions

View file

@ -33,6 +33,7 @@ misc_HEADERS = \
bareword.hh \
bddlt.hh \
bddop.hh \
bitvect.hh \
casts.hh \
common.hh \
escape.hh \
@ -59,6 +60,7 @@ noinst_LTLIBRARIES = libmisc.la
libmisc_la_SOURCES = \
bareword.cc \
bddop.cc \
bitvect.cc \
escape.cc \
formater.cc \
intvcomp.cc \