1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // Copyright 2016 Proyectos y Sistemas de Mantenimiento SL (eProsima).
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- /*!
- * @file TopicsPublisher.h
- * This header file contains the declaration of the publisher functions.
- *
- * This file was generated by the tool fastcdrgen.
- */
- #ifndef _TOPICSAMPLE_TOPICS_PUBLISHER_H_
- #define _TOPICSAMPLE_TOPICS_PUBLISHER_H_
- #include <fastrtps/fastrtps_fwd.h>
- #include <fastrtps/publisher/PublisherListener.h>
- #include "TopicsPubSubTypes.h"
- class TopicsPublisher
- {
- public:
- TopicsPublisher();
- virtual ~TopicsPublisher();
- bool init(const char * strtopic,const unsigned short nListenPort = 5100,const int ntype = 0);
- void run();
- void senddata(const char *str, int nsize);
- private:
- eprosima::fastrtps::Participant *mp_participant;
- eprosima::fastrtps::Publisher *mp_publisher;
- char mstrtopic[256];
- class PubListener : public eprosima::fastrtps::PublisherListener
- {
- public:
- PubListener() : n_matched(0){};
- ~PubListener(){};
- void onPublicationMatched(eprosima::fastrtps::Publisher* pub,eprosima::fastrtps::rtps::MatchingInfo& info);
- int n_matched;
- } m_listener;
- TopicSample::MessagePubSubType myType;
- };
- #endif // _TOPICSAMPLE_TOPICS_PUBLISHER_H_
|