/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2008-2010, Tomasz Sowa * All rights reserved. * */ #include "templates.h" #include "../core/request.h" #include "../core/version.h" namespace TemplatesFunctions { void sys_ver_major(Info & i) { i.out << WINIX_VER_MAJOR; } void sys_ver_minor(Info & i) { i.out << WINIX_VER_MINOR; } void sys_ver_revision(Info & i) { i.out << WINIX_VER_REVISION; } } // namespace TemplatesFunctions