WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
PlotLabel.h
1#ifndef _WINC_PLOTLABEL
2#define _WINC_PLOTLABEL
3
4namespace WXP {
5 struct PlotLabel {
6 int layer;
7 char locate[10];
8 char string[100];
9 char format[50];
11 int print();
12 };
13}
14
15#endif
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4
This struct stores labels for plot annotation.
Definition: PlotLabel.h:5
char format[50]
Definition: PlotLabel.h:9
char locate[10]
Definition: PlotLabel.h:7
int layer
Definition: PlotLabel.h:6
int print()
Definition: PlotLabel.cc:17