12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifndef _ARGUS_DEBUG_CAPTURE_SESSION_H
- #define _ARGUS_DEBUG_CAPTURE_SESSION_H
- namespace Argus
- {
- DEFINE_UUID(ExtensionName, EXT_DEBUG_CAPTURE_SESSION, 1fee5f03,2ea9,4558,8e92,c2,4b,0b,82,b9,af);
- namespace Ext
- {
- DEFINE_UUID(InterfaceID, IID_DEBUG_CAPTURE_SESSION, beaa075b,dcf7,4e26,b255,3c,98,db,03,5b,99);
- class IDebugCaptureSession : public Interface
- {
- public:
- static const InterfaceID& id() { return IID_DEBUG_CAPTURE_SESSION; }
-
- virtual Status dump(int32_t fd) const = 0;
- protected:
- ~IDebugCaptureSession() {}
- };
- }
- }
- #endif
|