Demote CKey.h include from .h to .cpp

This commit is contained in:
Vinnie Falco
2013-05-29 18:03:46 -07:00
parent 4fc2d3b274
commit e5492c0ab7
3 changed files with 3 additions and 2 deletions

View File

@@ -58,6 +58,7 @@
#include "crypto/ripple_Base58.h" // for RippleAddress
#include "crypto/ripple_CKey.h" // needs RippleAddress VFALCO: TODO, remove this dependency cycle
#include "crypto/ripple_RFC1751.h"
// VFALCO: TODO, fix these warnings!

View File

@@ -61,13 +61,11 @@
#include "../ripple_basics/ripple_basics.h"
#include "crypto/ripple_CBigNum.h"
//#include "crypto/ripple_CKey.h"
#include "crypto/ripple_Base58.h" // VFALCO: TODO, Can be moved to .cpp if we clean up setAlphabet stuff
#include "crypto/ripple_Base58Data.h"
#include "types/ripple_FieldNames.h"
#include "types/ripple_RippleAddress.h"
#include "crypto/ripple_CKey.h" // needs RippleAddress VFALCO: TODO, remove this dependency cycle
#include "types/ripple_Serializer.h" // needs CKey
#endif

View File

@@ -1,6 +1,8 @@
#ifndef RIPPLE_SERIALIZER_H
#define RIPPLE_SERIALIZER_H
class CKey; // forward declaration
class Serializer
{
public: