blob: f7649947e4c08e37734cae44d8ba55844bb09c34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
#pragma once
#include "pre_mon_page.h"
namespace NMonitoring {
    struct TVersionMonPage: public TPreMonPage {
        TVersionMonPage(const TString& path = "ver", const TString& title = "Version")
            : TPreMonPage(path, title)
        {
        }
        void OutputText(IOutputStream& out, NMonitoring::IMonHttpRequest&) override;
    };
}
  |