私の main.cpp では、すべての cout と cin にエラーがあります。
/**
* Description: This program demonstrates a very basic String class. It creates
* a few String objects and sends messages to (i.e., calls methods on)
* those objects.
*
*/
//#include <iostream>
#include "mystring.h"
//using namespace std;
/* Function Prototypes */
void Display(const String &str1, const String &str2, const String &str3);
/*************************** Main Program **************************/
int main()
{
String str1, str2, str3; // Some string objects.
char s[100]; // Used for input.
// Print out their initial values...
cout << "Initial values:" << endl;
Display(str1, str2, str3);
私の main.cpp は変更できないので、私の質問は、このエラーを修正するにはどうすればよいですか?ヘッダー ファイルと実装ファイルに何を追加する必要がありますか?