]> Git Repo - VerusCoin.git/commitdiff
Update comments in keystore to be doxygen compatible
authorMichael Ford <[email protected]>
Sun, 26 Oct 2014 08:35:06 +0000 (16:35 +0800)
committerMichael Ford <[email protected]>
Tue, 28 Oct 2014 04:06:59 +0000 (12:06 +0800)
src/key.cpp
src/keystore.cpp
src/keystore.h

index 48431f3dc57f2b35560f0c84cf23c1caf1086188..c466e84f2691acf236993e1d2fd473eb8276aca7 100644 (file)
@@ -13,7 +13,7 @@
 #include "ecwrapper.h"
 #endif
 
-//! anonymous namespace with local implementation code (OpenSSL interaction)
+//! anonymous namespace
 namespace {
 
 #ifdef USE_SECP256K1
index 039c690625d884f003a066dec00a5a8af4e83b19..879f09972014c3dfc9c45cd533456a22d6970718 100644 (file)
@@ -1,6 +1,6 @@
 // Copyright (c) 2009-2010 Satoshi Nakamoto
-// Copyright (c) 2009-2013 The Bitcoin developers
-// Distributed under the MIT/X11 software license, see the accompanying
+// Copyright (c) 2009-2014 The Bitcoin developers
+// Distributed under the MIT software license, see the accompanying
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #include "keystore.h"
index 4f8189c8f560498c62a05b8577443dc3b23298c2..66f8771d4a80eeec1237dedc62cf1e4bc5608445 100644 (file)
@@ -1,6 +1,6 @@
 // Copyright (c) 2009-2010 Satoshi Nakamoto
-// Copyright (c) 2009-2013 The Bitcoin developers
-// Distributed under the MIT/X11 software license, see the accompanying
+// Copyright (c) 2009-2014 The Bitcoin developers
+// Distributed under the MIT software license, see the accompanying
 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
 
 #ifndef BITCOIN_KEYSTORE_H
@@ -24,22 +24,22 @@ protected:
 public:
     virtual ~CKeyStore() {}
 
-    // Add a key to the store.
+    //! Add a key to the store.
     virtual bool AddKeyPubKey(const CKey &key, const CPubKey &pubkey) =0;
     virtual bool AddKey(const CKey &key);
 
-    // Check whether a key corresponding to a given address is present in the store.
+    //! Check whether a key corresponding to a given address is present in the store.
     virtual bool HaveKey(const CKeyID &address) const =0;
     virtual bool GetKey(const CKeyID &address, CKey& keyOut) const =0;
     virtual void GetKeys(std::set<CKeyID> &setAddress) const =0;
     virtual bool GetPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const;
 
-    // Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki
+    //! Support for BIP 0013 : see https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki
     virtual bool AddCScript(const CScript& redeemScript) =0;
     virtual bool HaveCScript(const CScriptID &hash) const =0;
     virtual bool GetCScript(const CScriptID &hash, CScript& redeemScriptOut) const =0;
 
-    // Support for Watch-only addresses
+    //! Support for Watch-only addresses
     virtual bool AddWatchOnly(const CScript &dest) =0;
     virtual bool RemoveWatchOnly(const CScript &dest) =0;
     virtual bool HaveWatchOnly(const CScript &dest) const =0;
This page took 0.028383 seconds and 4 git commands to generate.