StrPairs 라는 클래스다.#pragma once#ifndef _STRPAIRS_H_#define _STRPAIRS_H_ #include "util.h" class StrPairs{ public: StrPairs(); virtual ~StrPairs(); public: int get_str_index( const char *str ); str_pair &at( const int i ); str_pair &operator[]( const int i ); void add_pair( const char *name, const char *value ); void print(); void read_from_file( const char *fname ); void clear(); public: str_pair ..