Go to the documentation of this file.00001 #ifndef OMG_DDS_PUB_DETAIL_FIND_HPP_
00002 #define OMG_DDS_PUB_DETAIL_FIND_HPP_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <string>
00023
00024 #include <dds/core/corefwd.hpp>
00025 #include <dds/pub/pubfwd.hpp>
00026
00027
00028 namespace dds { namespace pub { namespace detail {
00029
00030 template <typename WRITER, typename FwdIterator>
00031 uint32_t
00032 find(const dds::pub::Publisher& pub, const std::string& topic_name,
00033 FwdIterator begin, int32_t max_size)
00034 {
00035 return 0;
00036 }
00037
00038
00039 template <typename WRITER, typename BinIterator>
00040 uint32_t
00041 find(const dds::pub::Publisher& pub,
00042 const std::string& topic_name,
00043 BinIterator begin)
00044 {
00045 return 0;
00046 }
00047
00048 } } }
00049
00050 #endif