|
| 1 | +/* |
| 2 | + * Copyright (c) 2017, Matias Fontanini |
| 3 | + * All rights reserved. |
| 4 | + * |
| 5 | + * Redistribution and use in source and binary forms, with or without |
| 6 | + * modification, are permitted provided that the following conditions are |
| 7 | + * met: |
| 8 | + * |
| 9 | + * * Redistributions of source code must retain the above copyright |
| 10 | + * notice, this list of conditions and the following disclaimer. |
| 11 | + * * Redistributions in binary form must reproduce the above |
| 12 | + * copyright notice, this list of conditions and the following disclaimer |
| 13 | + * in the documentation and/or other materials provided with the |
| 14 | + * distribution. |
| 15 | + * |
| 16 | + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 | + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 | + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 | + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 | + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 | + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 | + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 | + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 | + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 | + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | + * |
| 28 | + */ |
| 29 | + |
| 30 | +#ifndef CPPKAFKA_H |
| 31 | +#define CPPKAFKA_H |
| 32 | + |
| 33 | +#include <cppkafka/buffer.h> |
| 34 | +#include <cppkafka/clonable_ptr.h> |
| 35 | +#include <cppkafka/configuration.h> |
| 36 | +#include <cppkafka/configuration_base.h> |
| 37 | +#include <cppkafka/configuration_option.h> |
| 38 | +#include <cppkafka/consumer.h> |
| 39 | +#include <cppkafka/error.h> |
| 40 | +#include <cppkafka/exceptions.h> |
| 41 | +#include <cppkafka/group_information.h> |
| 42 | +#include <cppkafka/kafka_handle_base.h> |
| 43 | +#include <cppkafka/macros.h> |
| 44 | +#include <cppkafka/message.h> |
| 45 | +#include <cppkafka/message_builder.h> |
| 46 | +#include <cppkafka/metadata.h> |
| 47 | +#include <cppkafka/producer.h> |
| 48 | +#include <cppkafka/topic.h> |
| 49 | +#include <cppkafka/topic_configuration.h> |
| 50 | +#include <cppkafka/topic_partition.h> |
| 51 | +#include <cppkafka/topic_partition_list.h> |
| 52 | +#include <cppkafka/utils/backoff_committer.h> |
| 53 | +#include <cppkafka/utils/backoff_performer.h> |
| 54 | +#include <cppkafka/utils/buffered_producer.h> |
| 55 | +#include <cppkafka/utils/compacted_topic_processor.h> |
| 56 | +#include <cppkafka/utils/consumer_dispatcher.h> |
| 57 | + |
| 58 | +#endif |
0 commit comments