#ifndef DHPARSE_H #define DHPARSE_H #ifndef PARSERS_H #include #endif class VIEWDHCP_SUBNET; class VIEWDHCP{ ISC_PARSER p; VIEWITEMS_S items; /*~PROTOBEG~ VIEWDHCP */ public: VIEWDHCP (void); int getsubnets (SSTRINGS&tb); VIEWDHCP_SUBNET *getviewsub (const char *subnet); /*~PROTOEND~ VIEWDHCP */ }; class VIEWDHCP_SUBNET: public VIEWITEMS_RANGE{ SSTRING key; /*~PROTOBEG~ VIEWDHCP_SUBNET */ public: VIEWDHCP_SUBNET (VIEWITEMS_S&items, const char *subnet); bool isok (void)const; /*~PROTOEND~ VIEWDHCP_SUBNET */ }; #endif