23 lines
567 B
C
23 lines
567 B
C
|
|
/*
|
||
|
|
Copyright (c) 2013, 2014 IOnU Security Inc. All rights reserved. Copyright (c) 2015, 2016 Sequence Logic, Inc.
|
||
|
|
Created November 2013 by Kendrick Webster
|
||
|
|
|
||
|
|
K2Daemon/Version.h - header for version logging module
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace Version
|
||
|
|
{
|
||
|
|
namespace Data
|
||
|
|
{
|
||
|
|
constexpr const char* name = "K2Daemon";
|
||
|
|
constexpr int major = 1;
|
||
|
|
constexpr int minor = 1;
|
||
|
|
constexpr int step = 15;
|
||
|
|
constexpr const char* timestamp = __TIMESTAMP__;
|
||
|
|
}
|
||
|
|
|
||
|
|
// writes a version info message to the log
|
||
|
|
void Log(void);
|
||
|
|
}
|