00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019
00020
00021 #ifndef __MX_ISIMPLESYNCSTREAM_H__
00022 #define __MX_ISIMPLESYNCSTREAM_H__
00023
00024
00025
00026 #define MX_ISIMPLESYNCSTREAM_ID "ISimpleSyncStream"
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 ISimpleSyncStream : public virtual IStream,
00043 public virtual ISupportsSimpleCameraSpecification,
00044 public virtual ISupportsSyncStreaming {
00045
00046 };
00047 };
00048
00049
00050
00051 #endif // __MX_ISIMPLESYNCSTREAM_H__