Add TGBA union implementation.

* src/tgba/tgbaunion.cc, src/tgba/tgbaunion.hh: New files.
Union of two TGBAs.
* src/tgba/Makefile.am: Adjust.
This commit is contained in:
Flix Abecassis 2009-07-30 16:02:59 +02:00
parent afeaf287e9
commit b19ea79f43
4 changed files with 581 additions and 3 deletions

View file

@ -46,7 +46,8 @@ tgba_HEADERS = \
tgbaproduct.hh \
tgbatba.hh \
tgbareduc.hh \
tgbafromfile.hh
tgbafromfile.hh \
tgbaunion.hh
noinst_LTLIBRARIES = libtgba.la
libtgba_la_SOURCES = \
@ -67,4 +68,5 @@ libtgba_la_SOURCES = \
tgbaproduct.cc \
tgbatba.cc \
tgbareduc.cc \
tgbafromfile.cc
tgbafromfile.cc \
tgbaunion.cc