RESPOND 2.4.0
Researching Effective Strategies to Prevent Opioid Death
Loading...
Searching...
No Matches
version.hpp
1
2// File: version.hpp //
3// Project: respond //
4// Created Date: 2025-03-06 //
5// Author: Matthew Carroll //
6// ----- //
7// Last Modified: 2026-04-16 //
8// Modified By: Matthew Carroll //
9// ----- //
10// Copyright (c) 2025-2026 Syndemics Lab at Boston Medical Center //
12
13#ifndef RESPOND_VERSION_HPP_
14#define RESPOND_VERSION_HPP_
15
16#define RESPOND_VER_MAJOR 2
17#define RESPOND_VER_MINOR 4
18#define RESPOND_VER_PATCH 0
19
20#define RESPOND_TO_VERSION(major, minor, patch) \
21 (major * 10000 + minor * 100 + patch)
22#define RESPOND_VERSION \
23 RESPOND_TO_VERSION(RESPOND_VER_MAJOR, RESPOND_VER_MINOR, RESPOND_VER_PATCH)
24
25#endif // RESPOND_VERSION_HPP_