Fix windows linker errors (#120)

This commit is contained in:
multiprogramm
2018-10-17 20:43:33 +03:00
committed by Matias Fontanini
parent fbe3759fed
commit 2b66fd3a22
4 changed files with 8 additions and 4 deletions

View File

@@ -35,6 +35,7 @@
#include "../queue.h"
#include "../topic_partition_list.h"
#include "poll_interface.h"
#include "../macros.h"
namespace cppkafka {
@@ -52,7 +53,7 @@ struct QueueData {
*
* \brief Base implementation of the PollInterface
*/
class PollStrategyBase : public PollInterface {
class CPPKAFKA_API PollStrategyBase : public PollInterface {
public:
using QueueMap = std::map<TopicPartition, QueueData>;