Skip to content

Commit

Permalink
Merge pull request #3017 from fbrand-new/yarpllmgui
Browse files Browse the repository at this point in the history
[llmgui] Solving compilation warning introduced in #3012
  • Loading branch information
randaz81 authored Sep 7, 2023
2 parents facdd59 + c513916 commit ae6f755
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/yarpllmgui/ConversationCallback.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include <yarp/os/Bottle.h>
#include <yarp/os/TypedReaderCallback.h>

#include <QObject>

class ConversationCallback : public QObject, public yarp::os::TypedReaderCallback<yarp::os::Bottle>
Expand All @@ -23,6 +24,11 @@ class ConversationCallback : public QObject, public yarp::os::TypedReaderCallbac
}
void onRead(yarp::os::Bottle&) override;

void onRead(yarp::os::Bottle& datum, const yarp::os::TypedReader<yarp::os::Bottle>& reader) override
{
yarp::os::TypedReaderCallback<yarp::os::Bottle>::onRead(datum, reader);
}

signals:
void conversationChanged();
};
Expand Down

0 comments on commit ae6f755

Please sign in to comment.