00001 #ifndef _WINC_RESRCCL
00002 #define _WINC_RESRCCL
00003
00004 #include <WXP/String.h>
00005 #include <WXP/Strings.h>
00006
00007 namespace WXP {
00008 class ResrcCL {
00009 Strings strings;
00010 int ind;
00011 int pos;
00012 int flag;
00013
00014 public:
00015 ResrcCL( Strings &rstr );
00016 int rewind( );
00017 int getKeyed( String &name, String &value );
00018 int getPosition( String &value );
00019 static int compare( const char *str, const char *name, const char *cmdln );
00020 };
00021 }
00022 #endif