2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-21 15:22:14 +00:00
Files
redis/include/aedis/aedis.hpp
Marcelo Zimbres b35b2a3dd1 More refactoring.
2021-12-25 11:54:58 +01:00

54 lines
1019 B
C++

/* Copyright (c) 2019 - 2021 Marcelo Zimbres Silva (mzimbres at gmail dot com)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#pragma once
#include <aedis/version.hpp>
#include <aedis/resp3/read.hpp>
#include <aedis/resp3/write.hpp>
#include <aedis/resp3/response_traits.hpp>
#include <aedis/resp3/serializer.hpp>
//\tableofcontents
/** \mainpage Manual
Some text.
- \subpage usage
- \subpage tutorial
*/
/** \page usage Usage
Aedis is a header only library. You only need to include the header
@code
#include <aedis/src.hpp>
@endcode
in one of your source files.
*/
/** \page tutorial Tutorial
Some info
\section requests Requests
Some text
\section responses Responses
Some text
*/
/** \file aedis.hpp
* \brief Includes all headers that are necessary in order to use aedis.
*/