#ifndef _DVCAP_VIDEOCAPTURE_HPP_ #define _DVCAP_VIDEOCAPTURE_HPP_ #ifndef _COM_COM_HPP_ #include #endif #ifndef _COM_VARIANT_HPP_ #include #endif #ifndef _COM_COMPOINTER_HPP_ #include #endif #ifndef _COMMON_DXSDK_HPP_ #include #endif class VideoCapture { public: bool capture(BString &deviceName); private: bool locateDevice(ComPointer &baseFilter,BString &deviceName); }; #endif