31 lines
729 B
C
31 lines
729 B
C
|
|
/**
|
||
|
|
* @file mix_cc/sql/public.h
|
||
|
|
* @brief 公用头文件
|
||
|
|
* @author Cat (null.null.null@qq.com)
|
||
|
|
* @version 0.1
|
||
|
|
* @date 2021-07-10
|
||
|
|
*
|
||
|
|
* Company: Baosight Co. Ltd.
|
||
|
|
* DO NOT COPY/USE WITHOUT PERMISSION
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
#pragma once
|
||
|
|
#define BOOST_HANA_CONFIG_ENABLE_STRING_UDL
|
||
|
|
#include <boost/hana.hpp>
|
||
|
|
#include <boost/hana/string.hpp>
|
||
|
|
#include <chrono>
|
||
|
|
#include <boost/container/vector.hpp>
|
||
|
|
#include <boost/format.hpp>
|
||
|
|
#include "mix_cc/sql/op/cmd.h"
|
||
|
|
#include "mix_cc/sql/op/compare.h"
|
||
|
|
|
||
|
|
namespace mix_cc {
|
||
|
|
namespace sql {
|
||
|
|
namespace hana = boost::hana;
|
||
|
|
namespace chorono = std::chrono;
|
||
|
|
namespace container = boost::container;
|
||
|
|
using namespace boost::hana::literals;
|
||
|
|
using format = boost::format;
|
||
|
|
} // namespace sql
|
||
|
|
} // namespace mix_cc
|