我正在实现一个头文件" IVideoPlayer.h"我创建了一个抽象类" IVideoPlayer"。
class IVideoPlayer
{
public:
// Initialization
virtual bool Load(const char* pFilePath, bool useSubtitles = false) = 0;
virtual bool Start() = 0;
virtual bool Stop() = 0;
//....
};
其功能在文件" VideoPlayer.cpp"中定义。
#include "stdafx.h"
#include "IVideoPlayer.h"
#include <dshow.h>
HRESULT hr = CoInitialize(NULL);
IGraphBuilder *pGraph = NULL;
IMediaControl *pControl = NULL;
IMediaEvent *pEvent = NULL;
class VideoPlayer:public IVideoPlayer
{
public:
bool Load(const char* pFilePath, bool useSubtitles = false)
{
EPlaybackStatus var1 = PBS_ERROR;
// Initialize the COM library.
if (FAILED(hr))
{
printf("ERROR - Could not initialize COM library");
return 0;
}
// Create the filter graph manager and query for interfaces.
hr = CoCreateInstance(CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER,
IID_IGraphBuilder, (void **)&pGraph);
if (FAILED(hr))
{
printf("ERROR - Could not create the Filter Graph Manager.");
return 0;
}
hr = pGraph->QueryInterface(IID_IMediaControl, (void **)&pControl);
hr = pGraph->QueryInterface(IID_IMediaEvent, (void **)&pEvent);
// Build the graph. IMPORTANT: Change this string to a file on your system.
hr = pGraph->RenderFile(L"G:\edit.wmv", NULL);
return 0;
}
bool Start()
{
if (SUCCEEDED(hr))
{
// Run the graph.
hr = pControl->Run();
if (SUCCEEDED(hr))
{
// Wait for completion.
long evCode;
pEvent->WaitForCompletion(INFINITE, &evCode);
// Note: Do not use INFINITE in a real application, because it
// can block indefinitely.
}
}
return 0;
}
bool Stop()
{
pControl->Release();
pEvent->Release();
pGraph->Release();
CoUninitialize();
return 0;
}
};
要检查头文件,我创建了文件sample.cpp
#include "stdafx.h"
#include "IVideoPlayer.h"
#include <stdio.h>
#include <conio.h>
int main(void)
{
VideoPlayer h;
h.Load("G:\hila.wmv");
getch();
return 0;
}
错误是:
Error 1 error C2065: 'VideoPlayer' : undeclared identifier
Error 2 error C2146: syntax error : missing ';' before identifier 'h'
Error 3 error C2065: 'h' : undeclared identifier
Error 4 error C2065: 'h' : undeclared identifier
Error 5 error C2228: left of '.Load' must have class/struct/union
为什么编译器会将其显示为未声明的标识符? 任何帮助都被接受。提前感谢你
答案 0 :(得分:4)
您永远不会包含任何定义std
命名空间的头文件,因此using
(未定义)命名空间会导致错误。您也没有包含任何定义VideoPlayer
类的标头,主要是因为您决定将类定义放在源文件而不是头文件中。
以上说明了两个第一个错误。由于第二个错误(VideoPlayer
未定义),剩余的错误是跟进错误。
您需要创建一个头文件,其中放置VideoPlayer
类定义,就像IVideoPlayer
类的头文件一样。您将VideoPlayer
成员函数的实现放在源文件中。然后在源文件中包含头文件,您需要VideoPlayer
类。
答案 1 :(得分:1)
程序中没有name std的定义,因为你没有使用任何包含namepsace std定义的标准头文件。 至少改变这个指令
#include <stdio.h>
到
#include <cstdio>
此外,您必须将类&#39; VideoPlayer的定义放在标题中,并在模块sample.cpp中包含此标题
答案 2 :(得分:0)
您需要在顶部添加#include。 &#39; STD&#39;命名空间在iostream库中定义。 你还需要做一个&#34;视频播放器&#34;的前向声明。主cpp文件中的类。