#ifndef __ACCOUNT__ #define __ACCOUNT__ class Account { private: uint160 mAddress; CKey pubKey; public: bool CheckSignRaw(const std::vector &toSign, const std::vector &signature) const; const uint160& GetAddress(void) const { return mAddress; } }; #endif