get rid of tgta.cc

Fixes #76.

* src/ta/tgta.cc: Delete, and move the empty
constructor and destructor...
* src/ta/tgta.hh: ... here.
* src/ta/Makefile.am: Adjust.
This commit is contained in:
Alexandre Duret-Lutz 2015-04-23 23:21:56 +02:00
parent a06ae1e97e
commit c829cbbadf
3 changed files with 8 additions and 35 deletions

View file

@ -1,5 +1,5 @@
## -*- coding: utf-8 -*- ## -*- coding: utf-8 -*-
## Copyright (C) 2010, 2012, 2013 Laboratoire de Recherche et ## Copyright (C) 2010, 2012, 2013, 2015 Laboratoire de Recherche et
## Développement de l'Epita (LRDE). ## Développement de l'Epita (LRDE).
## ##
## This file is part of Spot, a model checking library. ## This file is part of Spot, a model checking library.
@ -34,7 +34,6 @@ noinst_LTLIBRARIES = libta.la
libta_la_SOURCES = \ libta_la_SOURCES = \
ta.cc \ ta.cc \
taproduct.cc \ taproduct.cc \
tgta.cc \
tgtaexplicit.cc \ tgtaexplicit.cc \
taexplicit.cc \ taexplicit.cc \
tgtaproduct.cc tgtaproduct.cc

View file

@ -1,30 +0,0 @@
// -*- coding: utf-8 -*-
// Copyright (C) 2012, 2013, 2014, 2015 Laboratoire de Recherche et
// Développement de l'Epita (LRDE).
//
// This file is part of Spot, a model checking library.
//
// Spot is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// Spot is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
// License for more deta_explicitils.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "tgta.hh"
namespace spot
{
tgta::tgta(const bdd_dict_ptr& d)
: twa(d)
{};
tgta::~tgta()
{};
}

View file

@ -60,11 +60,15 @@ namespace spot
{ {
protected: protected:
tgta(const bdd_dict_ptr& d); tgta(const bdd_dict_ptr& d)
: twa(d)
{
}
public: public:
virtual virtual ~tgta()
~tgta(); {
}
/// \brief Get an iterator over the successors of \a state /// \brief Get an iterator over the successors of \a state
/// filtred by the value of the changeset on transitions between the /// filtred by the value of the changeset on transitions between the