diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-09-27 20:11:32 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-09-28 22:48:24 +0200 |
| commit | c1ae5d53fb0fa7ceb9d6fc7a60c87df958ce37fe (patch) | |
| tree | f028a04619aa1b69f8b0aa72a5154f6ba1c09775 /src/java_version.hh | |
| parent | 2f13baa843bd1fb5db6630a2823681ffaff9fb11 (diff) | |
WIPWIP
Diffstat (limited to 'src/java_version.hh')
| -rw-r--r-- | src/java_version.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/java_version.hh b/src/java_version.hh new file mode 100644 index 0000000..444ae36 --- /dev/null +++ b/src/java_version.hh @@ -0,0 +1,16 @@ +#ifndef JAVA_VERSION_HH +#define JAVA_VERSION_HH + +#include <cstdint> + +namespace java { + +enum class Version : uint8_t { + kJava8 = 8, + + kMax = kJava8, +}; + +} // namespace java + +#endif // JAVA_VERSION_HH |
