Consolidate includes into group headers

This commit is contained in:
Vinnie Falco
2013-06-27 13:57:30 -07:00
parent 638656a597
commit 6f03efa882
14 changed files with 100 additions and 121 deletions

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#ifndef RIPPLE_OPENSSLINCLUDES_RIPPLEHEADER
#define RIPPLE_OPENSSLINCLUDES_RIPPLEHEADER
// All OpenSSL includes we need
#include <openssl/bn.h>
#include <openssl/buffer.h>
#include <openssl/dh.h>
#include <openssl/ec.h>
#include <openssl/ecdsa.h>
#include <openssl/evp.h>
#include <openssl/md5.h>
#include <openssl/obj_mac.h>
#include <openssl/ripemd.h>
#include <openssl/sha.h>
#endif