Use -fvisibility=hidden in src/ta/ and src/taalgos/.

* src/ta/Makefile.am, src/taalgos/Makefile.am: Use
$(VISIBILITY_CXXFLAGS).
* src/ta/ta.hh, src/ta/taexplicit.hh, src/ta/taproduct.hh,
src/ta/tgta.hh, src/ta/tgtaexplicit.hh, src/ta/tgtaproduct.hh,
src/taalgos/dotty.hh, src/taalgos/emptinessta.hh,
src/taalgos/minimize.hh, src/taalgos/reachiter.hh,
src/taalgos/statessetbuilder.hh, src/taalgos/stats.hh,
src/taalgos/tgba2ta.hh: Add SPOT_API in front
of all public symbols.
This commit is contained in:
Alexandre Duret-Lutz 2013-06-28 18:39:17 +02:00
parent f53328a8c7
commit cfbd31384f
15 changed files with 57 additions and 59 deletions

View file

@ -38,7 +38,7 @@ namespace spot
/// Explicit representation of a spot::ta.
/// \ingroup ta_representation
class ta_explicit : public ta
class SPOT_API ta_explicit : public ta
{
public:
ta_explicit(const tgba* tgba, bdd all_acceptance_conditions,
@ -146,7 +146,7 @@ namespace spot
/// states used by spot::ta_explicit.
/// \ingroup ta_representation
class state_ta_explicit : public spot::state
class SPOT_API state_ta_explicit : public spot::state
{
#ifndef SWIG
public:
@ -241,7 +241,7 @@ namespace spot
};
/// Successor iterators used by spot::ta_explicit.
class ta_explicit_succ_iterator : public ta_succ_iterator
class SPOT_API ta_explicit_succ_iterator : public ta_succ_iterator
{
public:
ta_explicit_succ_iterator(const state_ta_explicit* s);