fonts_mon_page.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. #pragma once
  2. #include <library/cpp/monlib/service/pages/resource_mon_page.h>
  3. namespace NMonitoring {
  4. struct TBootstrapFontsEotMonPage: public TResourceMonPage {
  5. TBootstrapFontsEotMonPage()
  6. : TResourceMonPage("static/fonts/glyphicons-halflings-regular.eot", "static/fonts/glyphicons-halflings-regular.eot", FONT_EOT, true)
  7. {
  8. }
  9. };
  10. struct TBootstrapFontsSvgMonPage: public TResourceMonPage {
  11. TBootstrapFontsSvgMonPage()
  12. : TResourceMonPage("static/fonts/glyphicons-halflings-regular.svg", "static/fonts/glyphicons-halflings-regular.svg", SVG, true)
  13. {
  14. }
  15. };
  16. struct TBootstrapFontsTtfMonPage: public TResourceMonPage {
  17. TBootstrapFontsTtfMonPage()
  18. : TResourceMonPage("static/fonts/glyphicons-halflings-regular.ttf", "static/fonts/glyphicons-halflings-regular.ttf", FONT_TTF, true)
  19. {
  20. }
  21. };
  22. struct TBootstrapFontsWoffMonPage: public TResourceMonPage {
  23. TBootstrapFontsWoffMonPage()
  24. : TResourceMonPage("static/fonts/glyphicons-halflings-regular.woff", "static/fonts/glyphicons-halflings-regular.woff", FONT_WOFF, true)
  25. {
  26. }
  27. };
  28. }