3

#includeコンソール アプリから GUI アプリに変更しようとしているプログラムには次のものがあります。これを手作業でコーディングする必要があります。問題は、私のプログラムが文字列ヘッダーをインポートできないことです。何故ですか?

#ifndef CATALOG_H_
#define CATALOG_H_
#include <string>


#include "StudentRepository.h"

#include "Student.h"


using namespace std;

class Catalog{
private:
    StudentRepository *studRepo;

public:
    Catalog(StudentRepository *stre):studRepo(stre){};
    ~Catalog();
    void addNewStudent(string name, int id, int group);
    void removeStudent(string name);
    void editStudent(string,int,int);
    Student seachStudent(string name);
    void printStudents();
          .
          .
          .

};

#endif /* CATALOG_H_ */

エラー:

Description Resource    Path    Location    Type
Type 'string' could not be resolved Catalog.h   /L_6-8_GUI  line 25 Semantic Error

PS: QT アドオンで Eclipse を使用しています。

4

1 に答える 1

2

書くstd::stringだけではありませんstring

于 2012-05-29T16:39:12.643 に答える