/* * AbstractPrctlFormula.h * * Created on: 16.04.2013 * Author: thomas */ #ifndef STORM_FORMULA_PRCTL_ABSTRACTPRCTLFORMULA_H_ #define STORM_FORMULA_PRCTL_ABSTRACTPRCTLFORMULA_H_ #include "src/formula/abstract/AbstractFormula.h" namespace storm { namespace property { namespace prctl { /*! * Interface class for all PRCTL root formulas. */ template class AbstractPrctlFormula : public virtual storm::property::abstract::AbstractFormula { public: virtual ~AbstractPrctlFormula() { // Intentionally left empty } }; } /* namespace prctl */ } /* namespace property */ } /* namespace storm */ #endif /* ABSTRACTPRCTLFORMULA_H_ */