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.
28 lines
544 B
28 lines
544 B
/*
|
|
* AbstractCslFormula.h
|
|
*
|
|
* Created on: 19.04.2013
|
|
* Author: thomas
|
|
*/
|
|
|
|
#ifndef ABSTRACTCSLFORMULA_H_
|
|
#define ABSTRACTCSLFORMULA_H_
|
|
|
|
#include "src/formula/abstract/AbstractFormula.h"
|
|
|
|
namespace storm {
|
|
namespace formula {
|
|
namespace csl {
|
|
|
|
template <class T>
|
|
class AbstractCslFormula : public virtual storm::formula::abstract::AbstractFormula<T>{
|
|
public:
|
|
virtual ~AbstractCslFormula() {
|
|
// Intentionally left empty
|
|
}
|
|
};
|
|
|
|
} /* namespace csl */
|
|
} /* namespace formula */
|
|
} /* namespace storm */
|
|
#endif /* ABSTRACTCSLFORMULA_H_ */
|