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.
22 lines
560 B
22 lines
560 B
/*
|
|
* ForwardDeclarations.h
|
|
*
|
|
* Created on: 14.01.2013
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#ifndef STORM_MODELCHECKER_FORWARDDECLARATIONS_H_
|
|
#define STORM_MODELCHECKER_FORWARDDECLARATIONS_H_
|
|
|
|
// Forward declare the abstract model checker. This is used by the formula classes that need this declaration for
|
|
// the callback methods (i.e., the check methods).
|
|
namespace storm {
|
|
namespace modelchecker {
|
|
|
|
template <class Type>
|
|
class AbstractModelChecker;
|
|
|
|
} //namespace modelchecker
|
|
} //namespace storm
|
|
|
|
#endif /* STORM_MODELCHECKER_FORWARDDECLARATIONS_H_ */
|