OSDN Git Service

fix cmake/Macros.cmake
[moflib/moflib.git] / moflib-1.0 / moflib / moflib / mof / Captor.hpp
1 #pragma once
2 #include "mof/tstring.hpp"
3 namespace mof{
4
5     class Captor
6     {
7         mof::tstring m_output;
8         int m_num;
9
10         public :
11         Captor( const mof::tstring& output);
12         ~Captor();
13         bool capture();
14         bool capture(const mof::tstring& filename);
15
16     };
17
18 }