ヘッダー ファイルから .cpp ファイルの関数 clearConsole() にアクセスできない理由がわかりません。間違って呼び出していると思いますか? ヘッダー ファイルからメイン ファイルをターゲットにするにはどうすればよいですか? customer.h の addCustomer() 関数にユーザーが入力した後、clearConsole() 関数を呼び出そうとしました。
メイン.cpp
// OTS.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
using namespace std;
#include "customer.h"
// Clear function specific to Windows
// Cross platform alternatives are more convoluted to reach desired effect, so have not been included
void clearConsole()
{
#ifdef _WIN32
system("cls");
#endif
}
Customer.h
//customer.H
//The object class customer
class customer
{
//...
clearConsole();
}