more final keywords

For #42.

* src/graph/graph.hh, src/ltlast/multop.hh, src/ltlenv/defaultenv.hh,
src/misc/tmpfile.hh, src/tgba/taatgba.hh, src/tgba/tgbagraph.hh,
src/tgba/tgbaproduct.hh, src/tgbaalgos/gtec/gtec.hh: Declare more
classes as final.
This commit is contained in:
Alexandre Duret-Lutz 2015-04-13 18:28:31 +02:00
parent ab7ee2c460
commit 98e4d99b24
8 changed files with 31 additions and 28 deletions

View file

@ -33,7 +33,7 @@ namespace spot
///
/// This state is in fact a pair of state: the state from the left
/// automaton and that of the right.
class SPOT_API state_product : public state
class SPOT_API state_product final: public state
{
public:
/// \brief Constructor
@ -119,7 +119,7 @@ namespace spot
};
/// \brief A lazy product with different initial states.
class SPOT_API tgba_product_init: public tgba_product
class SPOT_API tgba_product_init final: public tgba_product
{
public:
tgba_product_init(const const_tgba_ptr& left, const const_tgba_ptr& right,