messagepack implementation for embedded systems (mbed / arduino)

Dependents:   hello_message_pack

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers zone.hpp Source File

zone.hpp

00001 //
00002 // MessagePack for C++ memory pool
00003 //
00004 // Copyright (C) 2008-2014 FURUHASHI Sadayuki and KONDO Takatoshi
00005 //
00006 //    Distributed under the Boost Software License, Version 1.0.
00007 //    (See accompanying file LICENSE_1_0.txt or copy at
00008 //    http://www.boost.org/LICENSE_1_0.txt)
00009 //
00010 #ifndef MSGPACK_ZONE_HPP
00011 #define MSGPACK_ZONE_HPP
00012 
00013 #include "msgpack/cpp_config.hpp"
00014 
00015 #if defined(MSGPACK_USE_CPP03)
00016 #include "detail/cpp03_zone.hpp"
00017 #else  // MSGPACK_USE_CPP03
00018 #include "detail/cpp11_zone.hpp"
00019 #endif // MSGPACK_USE_CPP03
00020 
00021 #endif // MSGPACK_ZONE_HPP