Where are CoreLib.h,Buffer.h, Logger.h..?
Where can I find these header files on Windows 7? I just installed VS2010, but seems dont have these header..
CoreLib.h
#inc开发者_如何学Clude "Buffer.h"
#include "Logger.h"
#include "CoreLibImpl_.h"
Why would you expect them to be a part of Windows 7 or VS2010?
Google tells me what you're looking for is a part of Apache ActiveMQ. So go ahead and install the source. If you already have them and you just can't get VS to find the files, add them to the include directories.
Those names don't sound familiar. They're not one of the standard C++ headers like <iostream>
, or the C headers like <stdlib.h>
. Nor do they appear to be MFC headers. Why do you expect VS2010 to ship with these?
精彩评论