You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
615 B

/*
* AbstractCslFormula.h
*
* Created on: 19.04.2013
* Author: Thomas Heinemann
*/
#ifndef ABSTRACTCSLFORMULA_H_
#define ABSTRACTCSLFORMULA_H_
#include "src/formula/abstract/AbstractFormula.h"
namespace storm {
namespace property {
namespace csl {
/*!
* Abstract base class for all CSL root formulas.
*/
template <class T>
class AbstractCslFormula : public virtual storm::property::abstract::AbstractFormula<T>{
public:
virtual ~AbstractCslFormula() {
// Intentionally left empty
}
};
} /* namespace csl */
} /* namespace property */
} /* namespace storm */
#endif /* ABSTRACTCSLFORMULA_H_ */