File topic_description.hpp

File List > astutedds > dcps > topic_description.hpp

Go to the documentation of this file


#ifndef ASTUTEDDS_DCPS_TOPIC_DESCRIPTION_HPP
#define ASTUTEDDS_DCPS_TOPIC_DESCRIPTION_HPP

namespace astutedds::dcps
{

    class TopicDescription
    {
    public:
        virtual ~TopicDescription() = default;

        virtual const char *get_name() const = 0;

        virtual const char *get_type_name() const = 0;
    };

} // namespace astutedds::dcps

#endif // ASTUTEDDS_DCPS_TOPIC_DESCRIPTION_HPP