WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
StatPrior.h
1#ifndef _WINC_STATPRIOR
2#define _WINC_STATPRIOR
3
4namespace WXP {
5 class StatPrior {
6 char param[20];
7 float size;
8 int prior;
9 bool fixed;
10
11 public:
12 StatPrior();
13 StatPrior( float size, const char *str );
14 int init( );
15 int set();
16 int set( int val );
17 int setSize( float size );
18 int setParam( const char *str );
19 int set( float size, const char *str );
20 int get();
21 bool check( int prior );
22 int print();
23 };
24}
25#endif
This class defines station priority values.
Definition: StatPrior.h:5
int setSize(float size)
Definition: StatPrior.cc:83
StatPrior()
Definition: StatPrior.cc:20
int setParam(const char *str)
Definition: StatPrior.cc:92
int get()
Definition: StatPrior.cc:115
bool check(int prior)
Definition: StatPrior.cc:123
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4