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.
16 lines
439 B
16 lines
439 B
#ifndef STORM_CUDAFORSTORM_VERSION_H_
|
|
#define STORM_CUDAFORSTORM_VERSION_H_
|
|
|
|
// Library exports
|
|
#include "cudaForStorm.h"
|
|
|
|
#include <string>
|
|
|
|
size_t getStormCudaPluginVersionMajor();
|
|
size_t getStormCudaPluginVersionMinor();
|
|
size_t getStormCudaPluginVersionPatch();
|
|
size_t getStormCudaPluginVersionCommitsAhead();
|
|
const char* getStormCudaPluginVersionHash();
|
|
bool getStormCudaPluginVersionIsDirty();
|
|
|
|
#endif // STORM_CUDAFORSTORM_VERSION_H_
|