WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
WmoProduct.h
1#ifndef _WINC_WMOPRODUCT
2#define _WINC_WMOPRODUCT
3
4#include <WXP/Filename.h>
5#include <WXP/Buffer.h>
6
7namespace WXP {
8 class WmoProduct {
9 Filename filename;
10 int loc;
11 int size;
12
13 char header[80];
14 char awip[80];
15 Buffer data;
16
17 public:
18 WmoProduct();
19 int init();
20
21 int setHeader( const char *rheader );
22 inline const char *getHeader(){ return header; };
23 int setAwip( const char *rawip );
24 inline const char *getAwip(){ return awip; };
25 inline int setLoc( int rloc ){ loc = rloc; return 1; };
26 inline int getLoc(){ return loc; };
27 inline int setSize( int rsize ){ size = rsize; return 1; };
28 inline int getSize(){ return size; };
29 };
30}
31#endif
This class creates a generic buffer for data.
Definition: Buffer.h:5
This class creates filenames.
Definition: Filename.h:11
Definition: WmoProduct.h:8
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4