* src/priv/countstates.hh: Disallow calls using tgba_digraph.
This commit is contained in:
parent
cbca22d1f1
commit
bbeae65031
1 changed files with 7 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
// -*- coding: utf-8 -*-
|
// -*- coding: utf-8 -*-
|
||||||
// Copyright (C) 2013 Laboratoire de Recherche et Développement
|
// Copyright (C) 2013, 2014 Laboratoire de Recherche et Développement
|
||||||
// de l'Epita (LRDE).
|
// de l'Epita (LRDE).
|
||||||
//
|
//
|
||||||
// This file is part of Spot, a model checking library.
|
// This file is part of Spot, a model checking library.
|
||||||
|
|
@ -20,10 +20,16 @@
|
||||||
#ifndef SPOT_PRIV_COUNTSTATES_HH
|
#ifndef SPOT_PRIV_COUNTSTATES_HH
|
||||||
# define SPOT_PRIV_COUNTSTATES_HH
|
# define SPOT_PRIV_COUNTSTATES_HH
|
||||||
|
|
||||||
|
#include "misc/common.hh"
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
class tgba;
|
class tgba;
|
||||||
unsigned count_states(const tgba* a);
|
unsigned count_states(const tgba* a);
|
||||||
|
|
||||||
|
class tgba_digraph;
|
||||||
|
// Call a->num_states() directly!
|
||||||
|
unsigned count_states(const tgba_digraph* a) SPOT_DEPRECATED;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // SPOT_PRIV_COUNTSTATES_HH
|
#endif // SPOT_PRIV_COUNTSTATES_HH
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue