Go to the documentation of this file.00001 #ifndef OMG_DDS_SUB_DETAIL_QUERY_CONDITION_HPP_
00002 #define OMG_DDS_SUB_DETAIL_QUERY_CONDITION_HPP_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <dds/sub/detail/subfwd.hpp>
00023 #include <dds/sub/cond/detail/ReadCondition.hpp>
00024
00025
00026 namespace dds { namespace sub { namespace cond { namespace detail {
00027
00028 #ifdef OMG_DDS_CONTENT_SUBSCRIPTION_SUPPORT
00029
00030 template <typename T>
00031 class QueryCondition : public ReadCondition<T> {
00032 public:
00033 QueryCondition() : ReadCondition<T>() { }
00034
00035 virtual ~QueryCondition() { }
00036
00037 public:
00038
00039 };
00040
00041 #endif // OMG_DDS_CONTENT_SUBSCRIPTION_SUPPORT
00042
00043 } } } }
00044
00045 #endif