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:
parent
f53328a8c7
commit
cfbd31384f
15 changed files with 57 additions and 59 deletions
|
|
@ -29,7 +29,7 @@ namespace spot
|
|||
{
|
||||
/// \ingroup ta_generic
|
||||
/// \brief Iterate over all reachable states of a spot::ta.
|
||||
class ta_reachable_iterator
|
||||
class SPOT_API ta_reachable_iterator
|
||||
{
|
||||
public:
|
||||
ta_reachable_iterator(const ta* a);
|
||||
|
|
@ -97,7 +97,8 @@ namespace spot
|
|||
/// \ingroup ta_generic
|
||||
/// \brief An implementation of spot::ta_reachable_iterator that browses
|
||||
/// states depth first.
|
||||
class ta_reachable_iterator_depth_first : public ta_reachable_iterator
|
||||
class SPOT_API ta_reachable_iterator_depth_first
|
||||
: public ta_reachable_iterator
|
||||
{
|
||||
public:
|
||||
ta_reachable_iterator_depth_first(const ta* a);
|
||||
|
|
@ -114,7 +115,8 @@ namespace spot
|
|||
/// \ingroup ta_generic
|
||||
/// \brief An implementation of spot::ta_reachable_iterator that browses
|
||||
/// states breadth first.
|
||||
class ta_reachable_iterator_breadth_first : public ta_reachable_iterator
|
||||
class SPOT_API ta_reachable_iterator_breadth_first
|
||||
: public ta_reachable_iterator
|
||||
{
|
||||
public:
|
||||
ta_reachable_iterator_breadth_first(const ta* a);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue