Use -fvisibility=hidden in src/kripke/, src/saba/, and src/sabaalgos/
* src/kripke/Makefile.am, src/saba/Makefile.am, src/sabaalgos/Makefile.am: Use $(VISIBILITY_CXXFLAGS). * src/kripke/fairkripke.hh, src/kripke/kripke.hh, src/kripke/kripkeexplicit.hh, src/kripke/kripkeprint.hh, src/saba/explicitstateconjunction.hh, src/saba/saba.hh, src/saba/sabacomplementtgba.hh, src/saba/sabastate.hh, src/saba/sabasucciter.hh, src/sabaalgos/sabadotty.hh, src/sabaalgos/sabareachiter.hh: Mark exported symbols with SPOT_API.
This commit is contained in:
parent
a12922b331
commit
dab51a9dd0
14 changed files with 69 additions and 48 deletions
|
|
@ -1,4 +1,5 @@
|
|||
## Copyright (C) 2009, 2011 Laboratoire de Recherche et Développement
|
||||
## -*- 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.
|
||||
|
|
@ -17,7 +18,7 @@
|
|||
## along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
AM_CPPFLAGS = -I$(srcdir)/.. -I.. $(BUDDY_CPPFLAGS)
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
AM_CXXFLAGS = $(WARNING_CXXFLAGS) $(VISIBILITY_CXXFLAGS)
|
||||
|
||||
sabadir = $(pkgincludedir)/saba
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2009, 2012 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
// Copyright (C) 2009, 2012, 2013 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
//
|
||||
|
|
@ -20,7 +20,8 @@
|
|||
#ifndef SPOT_SABA_EXPLICITSTATECONJUNCTION_HH
|
||||
# define SPOT_SABA_EXPLICITSTATECONJUNCTION_HH
|
||||
|
||||
#include <misc/hash.hh>
|
||||
#include "misc/common.hh"
|
||||
#include "misc/hash.hh"
|
||||
#include "sabasucciter.hh"
|
||||
|
||||
namespace spot
|
||||
|
|
@ -30,7 +31,7 @@ namespace spot
|
|||
///
|
||||
/// This class provides a basic implementation to
|
||||
/// iterate over a conjunction of states of a saba.
|
||||
class explicit_state_conjunction : public saba_state_conjunction
|
||||
class SPOT_API explicit_state_conjunction : public saba_state_conjunction
|
||||
{
|
||||
public:
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
// Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2009, 2010, 2013 Laboratoire de Recherche et
|
||||
// Développement de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
//
|
||||
|
|
@ -25,7 +26,7 @@
|
|||
|
||||
namespace spot
|
||||
{
|
||||
/// \defgroup saba SABA (State-based Alternating Büchi Automata)
|
||||
/// \defgroup saba SABA (State-based Alternating Büchi Automata)
|
||||
///
|
||||
/// Spot was centered around non-deterministic \ref tgba.
|
||||
/// Alternating automata are an extension to non-deterministic
|
||||
|
|
@ -37,7 +38,7 @@ namespace spot
|
|||
/// \ingroup saba
|
||||
|
||||
/// \ingroup saba_essentials
|
||||
/// \brief A State-based Alternating (Generalized) Büchi Automaton.
|
||||
/// \brief A State-based Alternating (Generalized) Büchi Automaton.
|
||||
///
|
||||
/// Browsing such automaton can be achieved using two functions:
|
||||
/// \c get_init_state, and \c succ_iter. The former returns
|
||||
|
|
@ -48,7 +49,7 @@ namespace spot
|
|||
/// we never represent transitions! Transition informations are
|
||||
/// obtained by querying the iterator over the successors of
|
||||
/// a state.
|
||||
class saba
|
||||
class SPOT_API saba
|
||||
{
|
||||
protected:
|
||||
saba();
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright (C) 2009, 2010 Laboratoire de Recherche et Développement
|
||||
// Copyright (C) 2009, 2010, 2013 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -51,7 +51,7 @@ namespace spot
|
|||
/// The construction is done on-the-fly, by the
|
||||
/// \c saba_complement_succ_iterator class.
|
||||
/// \see saba_complement_succ_iterator
|
||||
class saba_complement_tgba : public saba
|
||||
class SPOT_API saba_complement_tgba : public saba
|
||||
{
|
||||
public:
|
||||
saba_complement_tgba(const tgba* a);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
// Copyright (C) 2009 Laboratoire de Recherche et Développement
|
||||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2009, 2013 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -19,6 +20,7 @@
|
|||
#ifndef SPOT_SABA_SABASTATE_HH
|
||||
# define SPOT_SABA_SABASTATE_HH
|
||||
|
||||
#include "misc/common.hh"
|
||||
#include <bdd.h>
|
||||
#include <functional>
|
||||
#include <boost/shared_ptr.hpp>
|
||||
|
|
@ -28,7 +30,7 @@ namespace spot
|
|||
|
||||
/// \ingroup saba_essentials
|
||||
/// \brief Abstract class for saba states.
|
||||
class saba_state
|
||||
class SPOT_API saba_state
|
||||
{
|
||||
public:
|
||||
/// \brief Compares two states (that come from the same automaton).
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
// Copyright (C) 2009 Laboratoire de Recherche et Développement
|
||||
// -*- coding: utf-8 -*-
|
||||
// Copyright (C) 2009, 2013 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
//
|
||||
// This file is part of Spot, a model checking library.
|
||||
|
|
@ -28,7 +29,7 @@ namespace spot
|
|||
///
|
||||
/// This class provides the basic functionalities required to
|
||||
/// iterate over a conjunction of states of a saba.
|
||||
class saba_state_conjunction
|
||||
class SPOT_API saba_state_conjunction
|
||||
{
|
||||
public:
|
||||
virtual
|
||||
|
|
@ -95,7 +96,7 @@ namespace spot
|
|||
/// transitions of an alternating automaton are defined as a
|
||||
/// boolean function with conjunctions (universal) and
|
||||
/// disjunctions (non-deterministic),
|
||||
class saba_succ_iterator
|
||||
class SPOT_API saba_succ_iterator
|
||||
{
|
||||
public:
|
||||
virtual
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue