diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2013-04-18 15:42:54 +0200 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2013-04-18 15:42:54 +0200 |
commit | 7c8e064216cc672557cbf3892ff090490505e408 (patch) | |
tree | 2bbc9f5541bc2d7d90e4867af1d20d6d7d28105a /datastore-leveldb/src/web.h | |
parent | 67376eb18a6be1aae934407ad9d86bd6427cc05c (diff) | |
download | ebus-alt-7c8e064216cc672557cbf3892ff090490505e408.tar.gz ebus-alt-7c8e064216cc672557cbf3892ff090490505e408.zip |
leveldb: size restricted range query
Diffstat (limited to 'datastore-leveldb/src/web.h')
-rw-r--r-- | datastore-leveldb/src/web.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/datastore-leveldb/src/web.h b/datastore-leveldb/src/web.h index 1360d3d..acb38f5 100644 --- a/datastore-leveldb/src/web.h +++ b/datastore-leveldb/src/web.h @@ -4,15 +4,15 @@ extern "C" { #include "mongoose.h" } -#ifdef __clang__ -#include <cstddef> -#warning "Using clang" -#define BOOST_NO_CXX11_NUMERIC_LIMITS -#endif #include <boost/regex.hpp> +extern const boost::regex web_handle_api_value_R; void web_handle_api_value(const boost::cmatch &match, struct mg_connection *conn); +extern const boost::regex web_handle_api_range_R; void web_handle_api_range(const boost::cmatch &match, struct mg_connection *conn); +extern const boost::regex web_handle_api_range_size_R; +void web_handle_api_range_size(const boost::cmatch &match, struct mg_connection *conn); + #endif/*HAVE_WEB_H*/ |