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.
 
 
 
 

23 lines
534 B

#ifndef STORM_SETTINGS_ARGUMENTTYPE_H_
#define STORM_SETTINGS_ARGUMENTTYPE_H_
#include <iostream>
#include "src/utility/macros.h"
namespace storm {
namespace settings {
/*!
* This enum captures all possible types for arguments.
*/
enum class ArgumentType {
String, Integer, UnsignedInteger, Double, Boolean
};
std::ostream& operator<<(std::ostream& out, ArgumentType& argumentType);
} // namespace settings
} // namespace storm
#endif // STORM_SETTINGS_ARGUMENTTYPE_H_