comparison Framework/Deprecated/Toolbox/MessagingToolbox.cpp @ 1311:3d26447ddd28 broker

warning fixes + doc + indentation + header files in cmake for VC++ sln browsing
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 09 Mar 2020 14:55:22 +0100
parents 8a0a62189f46
children 1a08b779be64
comparison
equal deleted inserted replaced
1310:9bea7e15b519 1311:3d26447ddd28
16 * 16 *
17 * You should have received a copy of the GNU Affero General Public License 17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/ 19 **/
20 20
21
22 #include "MessagingToolbox.h" 21 #include "MessagingToolbox.h"
23 22
24 #include <Core/Images/Image.h> 23 #include <Core/Images/Image.h>
25 #include <Core/Images/ImageProcessing.h> 24 #include <Core/Images/ImageProcessing.h>
26 #include <Core/Images/JpegReader.h> 25 #include <Core/Images/JpegReader.h>
28 #include <Core/OrthancException.h> 27 #include <Core/OrthancException.h>
29 #include <Core/Toolbox.h> 28 #include <Core/Toolbox.h>
30 #include <Core/Logging.h> 29 #include <Core/Logging.h>
31 30
32 #include <boost/lexical_cast.hpp> 31 #include <boost/lexical_cast.hpp>
32
33 // 'Json::Reader': Use CharReader and CharReaderBuilder instead
34 #pragma warning(disable:4996)
35
33 #include <json/reader.h> 36 #include <json/reader.h>
34 #include <json/writer.h> 37 #include <json/writer.h>
38
35 39
36 namespace Deprecated 40 namespace Deprecated
37 { 41 {
38 namespace MessagingToolbox 42 namespace MessagingToolbox
39 { 43 {