00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019
00020
00021 #ifndef __MX_ISIMPLECAMERALIVESTREAM_H__
00022 #define __MX_ISIMPLECAMERALIVESTREAM_H__
00023
00024
00025
00026 #define MX_ISIMPLECAMERALIVESTREAM_ID "ISimpleCameraLiveStream"
00027
00028
00029
00030 #include "IStream.h"
00031 #include "ISupportsSimpleCameraSpecification.h"
00032 #include "ISupportsSyncStreaming.h"
00033
00034
00035
00036 namespace mx {
00037
00039
00042 class ISimpleCameraLiveStream : public virtual IStream,
00043 public virtual
00044 ISupportsSimpleCameraSpecification,
00045 public virtual ISupportsSyncStreaming {
00046
00047 };
00048 };
00049
00050
00051
00052 #endif // __MX_ISIMPLECAMERALIVESTREAM_H__