0

単純なコンソール アプリに Microsoft Visual C++ 2010 を使用していますが、構成ファイルとして作成したいヘッダー ファイルを含めることができません。

ディレクトリは次のようになります

-AI
  --config
    --config.h
  --Header Files
  --Resource Files
  --Source Files

AI.cpp

// AI.cpp : main project file.

#include "stdafx.h"
#include <cstdio>

//include config file
#include "../config/config.h"

using namespace System;
using namespace std;

config c;

int main()
{

    count << "My name is: " << c.getName;
    std::getchar();

}

config.h ファイル

Class config
{

    public void getName(){
        return 'Awesome'
    }

}

[ビルド] ボタンをクリックすると、次のエラーが表示されます。

1>AI.cpp(7): fatal error C1083: Cannot open include file: 'config\config.h': No such file or directory
4

1 に答える 1

2

VoidStarのソリューション:

Right click on the include and click on Open Document "config.h".
If VS can't resolve the path you'll get an error that tells you where it looked.
于 2012-08-27T12:19:00.197 に答える