aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics/ValueComponent.pb-c.h
blob: fa027d8522ae6fed63948003954d824c19150dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* Generated by the protocol buffer compiler.  DO NOT EDIT! */
/* Generated from: ValueComponent.proto */

#ifndef PROTOBUF_C_ValueComponent_2eproto__INCLUDED
#define PROTOBUF_C_ValueComponent_2eproto__INCLUDED

#include <protobuf-c/protobuf-c.h>

PROTOBUF_C__BEGIN_DECLS

#if PROTOBUF_C_VERSION_NUMBER < 1003000
# error This file was generated by a newer version of protoc-c which is incompatible with your libprotobuf-c headers. Please update your headers.
#elif 1003000 < PROTOBUF_C_MIN_COMPILER_VERSION
# error This file was generated by an older version of protoc-c which is incompatible with your libprotobuf-c headers. Please regenerate this file with a newer version of protoc-c.
#endif




/* --- enums --- */

typedef enum _ValueComponent {
  VALUE_COMPONENT__Heater1Temp = 0,
  VALUE_COMPONENT__Heater2Temp = 1,
  VALUE_COMPONENT__BlowerVoltage = 2
    PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(VALUE_COMPONENT)
} ValueComponent;

/* --- messages --- */

/* --- per-message closures --- */


/* --- services --- */


/* --- descriptors --- */

extern const ProtobufCEnumDescriptor    value_component__descriptor;

PROTOBUF_C__END_DECLS


#endif  /* PROTOBUF_C_ValueComponent_2eproto__INCLUDED */
/span>{ /// <summary> /// Initializes a new instance of the <see cref="MdiChild"/> class. /// </summary> public MdiChild() { } /// <summary> /// Initializes a new instance of the <see cref="MdiChild"/> class. /// </summary> /// <param name="header">The header.</param> /// <param name="view">The view.</param> public MdiChild(String header, FrameworkElement view) : this() { Header = header; View = view; } /// <summary> /// Gets or sets the icon. /// </summary> public PackIconKind Icon { get { return (PackIconKind)GetValue(IconProperty); } set { SetValue(IconProperty, value); } } public static readonly DependencyProperty IconProperty = DependencyProperty.Register("Icon", typeof(PackIconKind), typeof(MdiChild), new PropertyMetadata(PackIconKind.LaptopWindows)); /// <summary> /// Gets or sets the header. /// </summary> public String Header { get { return (String)GetValue(HeaderProperty); } set { SetValue(HeaderProperty, value); } } public static readonly DependencyProperty HeaderProperty = DependencyProperty.Register("Header", typeof(String), typeof(MdiChild), new PropertyMetadata(null)); /// <summary> /// Gets or sets the view. /// </summary> public FrameworkElement View { get { return (FrameworkElement)GetValue(ViewProperty); } set { SetValue(ViewProperty, value); } } public static readonly DependencyProperty ViewProperty = DependencyProperty.Register("View", typeof(FrameworkElement), typeof(MdiChild), new PropertyMetadata(null)); /// <summary> /// Gets or sets the location. /// </summary> public Point Location { get { return (Point)GetValue(LocationProperty); } set { SetValue(LocationProperty, value); } } public static readonly DependencyProperty LocationProperty = DependencyProperty.Register("Location", typeof(Point), typeof(MdiChild), new PropertyMetadata(new Point())); } }