WXP C++ Library Version 6.74.6
Loading...
Searching...
No Matches
ResrcCL.h
1#ifndef _WINC_RESRCCL
2#define _WINC_RESRCCL
3
4#include <WXP/String.h>
5#include <WXP/Strings.h>
6
7namespace WXP {
8 class ResrcCL {
9 Strings strings;
10 int ind;
11 int pos;
12 int flag;
13
14 public:
15 ResrcCL( Strings &rstr );
16 int rewind( );
17 int getKeyed( String &name, String &value );
18 int getPosition( String &value );
19 static int compare( const char *str, const char *name, const char *cmdln );
20 };
21}
22#endif
This class parses the command line for resource values.
Definition: ResrcCL.h:8
int getKeyed(String &name, String &value)
Definition: ResrcCL.cc:43
static int compare(const char *str, const char *name, const char *cmdln)
Definition: ResrcCL.cc:111
int getPosition(String &value)
Definition: ResrcCL.cc:125
int rewind()
Definition: ResrcCL.cc:31
This is a variable length string class.
Definition: String.h:5
This class creates a list of strings.
Definition: Strings.h:5
All WXP classes fall under the WXP namespace.
Definition: Angle.h:4