Move compacted topic processor into utils directory

This commit is contained in:
Matias Fontanini
2016-10-28 07:24:26 -07:00
parent b834fbd07a
commit cf6dc03eec
2 changed files with 9 additions and 2 deletions

View File

@@ -1,6 +1,12 @@
file(GLOB INCLUDE_FILES "*.h")
file(GLOB UTILS_INCLUDE_FILES "utils/*.h")
install(
FILES ${INCLUDE_FILES}
FILES ${INCLUDE_FILES}
DESTINATION include/cppkafka
COMPONENT Headers
)
install(
FILES ${UTILS_INCLUDE_FILES}
DESTINATION include/cppkafka/utils/
COMPONENT Headers
)

View File

@@ -39,7 +39,7 @@
#include "consumer.h"
namespace cppkafka {
namespace utils {
/**
* \brief Events generated by a CompactedTopicProcessor
*/
@@ -341,6 +341,7 @@ void CompactedTopicProcessor<K, V>::on_assignment(TopicPartitionList& topic_part
}
}
} // utils
} // cppkafka
#endif // CPPKAFKA_COMPACTED_TOPIC_PROCESSOR_H