Reformat annotations in preparation for automated extraction

This commit is contained in:
Vinnie Falco
2013-06-07 14:46:09 -07:00
parent 6d8ee90a8d
commit a6fdabc68a
89 changed files with 192 additions and 192 deletions

View File

@@ -11,7 +11,7 @@ enum POWResult
powTOOEASY = 5, // the difficulty increased too much while you solved it
};
// VFALCO: TODO move this to the class as a static member and rename it
// VFALCO TODO move this to the class as a static member and rename it
bool powResultInfo (POWResult powCode, std::string& strToken, std::string& strHuman);
class IProofOfWorkFactory
@@ -25,7 +25,7 @@ public:
virtual ~IProofOfWorkFactory () { }
// VFALCO: TODO which members can be const?
// VFALCO TODO which members can be const?
virtual ProofOfWork getProof () = 0;