From 9ec8a42be3bb9806337dbeb9f514f1a250d984f2 Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Mon, 2 Dec 2024 16:39:50 -0500 Subject: [PATCH] MMCore: Add versioning constants for major, minor, and patch versions --- MMCore/MMCore.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MMCore/MMCore.h b/MMCore/MMCore.h index 83d67b0b2..5deb1eea8 100644 --- a/MMCore/MMCore.h +++ b/MMCore/MMCore.h @@ -86,6 +86,9 @@ # define MMCORE_DEPRECATED(prototype) prototype #endif +extern const int MMCore_versionMajor; +extern const int MMCore_versionMinor; +extern const int MMCore_versionPatch; class CPluginManager; class CircularBuffer;