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.
24 lines
394 B
24 lines
394 B
/*
|
|
* CommandLine.h
|
|
*
|
|
* Created on: 26.12.2012
|
|
* Author: Christian Dehnert
|
|
*/
|
|
|
|
#ifndef STORM_UTILITY_COMMANDLINE_H_
|
|
#define STORM_UTILITY_COMMANDLINE_H_
|
|
|
|
namespace storm {
|
|
|
|
namespace utility {
|
|
|
|
/*!
|
|
* Prints a separation line on the command line.
|
|
*/
|
|
void printSeparationLine(std::ostream& out);
|
|
|
|
} //namespace utility
|
|
|
|
} //namespace storm
|
|
|
|
#endif /* STORM_UTILITY_COMMANDLINE_H_ */
|