Use -fvisibility=hidden in src/tgba/.

* src/tgba/Makefile.am: Use $(VISIBILITY_CXXFLAGS).
* src/tgba/bdddict.hh, src/tgba/bddprint.hh, src/tgba/formula2bdd.hh,
src/tgba/futurecondcol.hh, src/tgba/state.hh, src/tgba/statebdd.hh,
src/tgba/succiter.hh, src/tgba/succiterconcrete.hh, src/tgba/taatgba.hh,
src/tgba/tgba.hh, src/tgba/tgbabddconcrete.hh,
src/tgba/tgbabddconcretefactory.hh, src/tgba/tgbabddconcreteproduct.hh,
src/tgba/tgbabddcoredata.hh, src/tgba/tgbabddfactory.hh,
src/tgba/tgbaexplicit.hh, src/tgba/tgbakvcomplement.hh,
src/tgba/tgbaproduct.hh, src/tgba/tgbasafracomplement.hh,
src/tgba/tgbascc.hh, src/tgba/tgbasgba.hh, src/tgba/tgbatba.hh,
src/tgba/tgbaunion.hh, src/tgba/wdbacomp.hh: Mark exported symbols with
SPOT_API.
* src/tgba/public.hh: Mark the file as deprecated.
* src/tgbaalgos/cutscc.hh: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2013-06-26 22:46:23 +02:00
parent 8ba3e64f0a
commit a12922b331
27 changed files with 152 additions and 109 deletions

View file

@ -1,5 +1,6 @@
// Copyright (C) 2009, 2011 Laboratoire de Recherche et Développement
// de l'Epita (LRDE).
// -*- coding: utf-8 -*-
// Copyright (C) 2009, 2011, 2013 Laboratoire de Recherche et
// Développement de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
//
@ -32,7 +33,7 @@ namespace spot
/// If the first member is different from 0 and the second is 0,
/// the state belongs to the right automaton.
/// If both members are 0, the state is the initial state.
class state_union : public state
class SPOT_API state_union : public state
{
public:
/// \brief Constructor
@ -75,7 +76,7 @@ namespace spot
};
/// \brief Iterate over the successors of an union computed on the fly.
class tgba_succ_iterator_union: public tgba_succ_iterator
class SPOT_API tgba_succ_iterator_union: public tgba_succ_iterator
{
public:
tgba_succ_iterator_union(tgba_succ_iterator* left,
@ -107,7 +108,7 @@ namespace spot
};
/// \brief A lazy union. (States are computed on the fly.)
class tgba_union: public tgba
class SPOT_API tgba_union: public tgba
{
public:
/// \brief Constructor.