winix/templates/sys.cpp

41 lines
453 B
C++
Executable File

/*
* This file is a part of CMSLU -- Content Management System like Unix
* and is not publicly distributed
*
* Copyright (c) 2008, Tomasz Sowa
* All rights reserved.
*
*/
#include "templates.h"
namespace TemplatesFunctions
{
void sys_ver_major(Info & i)
{
i.out << MAJOR_VER;
}
void sys_ver_minor(Info & i)
{
i.out << MINOR_VER;
}
void sys_ver_revision(Info & i)
{
i.out << REVISION_VER;
}
} // namespace TemplatesFunctions