List 2-1 CDictionaryクラスの定義

  1: class CDictionary
  2: {
  3: private:
  4:     // 英和辞書の単語数を格納するメンバ変数(プロパティ)
  5:     int nWord;
  6: public:
  7:     CDictionary();
  8:     ~CDictionary(){ }
  9:     // 英和辞書検索メンバ関数(メソッド)
 10:     int LookupWord(char* lpstrEword, char* lpstrJword);
 11: };