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.
 
 
 
 

40 lines
1.1 KiB

#pragma once
#include "storm-config.h"
#include "src/settings/modules/ModuleSettings.h"
namespace storm {
namespace settings {
namespace modules {
class GSPNExportSettings : public ModuleSettings {
public:
/*!
* Creates a new JaniExport setting
*/
GSPNExportSettings();
/**
* Retrievew whether the pgcl file option was set
*/
bool isWriteToDotSet() const;
/**
* Retrieves the pgcl file name
*/
std::string getWriteToDotFilename() const;
bool check() const override;
void finalize() override;
static const std::string moduleName;
private:
static const std::string writeToDotOptionName;
//static const std::string writeToDotOptionShortName;
};
}
}
}