Update CMakeLists.txt - play with openssl
[novacoin.git] / src / coincontrol.h
index 236b586..83f7a54 100644 (file)
@@ -1,53 +1,25 @@
 #ifndef COINCONTROL_H
 #define COINCONTROL_H
 
+#include "base58.h"
+
+class COutPoint;
+
 /** Coin Control Features. */
 class CCoinControl
 {
 public:
-    CTxDestination destChange;
+    CBitcoinAddress destChange;
 
-    CCoinControl()
-    {
-        SetNull();
-    }
+    CCoinControl();
         
-    void SetNull()
-    {
-        destChange = CNoDestination();
-        setSelected.clear();
-    }
-    
-    bool HasSelected() const
-    {
-        return (setSelected.size() > 0);
-    }
-    
-    bool IsSelected(const uint256& hash, unsigned int n) const
-    {
-        COutPoint outpt(hash, n);
-        return (setSelected.count(outpt) > 0);
-    }
-    
-    void Select(COutPoint& output)
-    {
-        setSelected.insert(output);
-    }
-    
-    void UnSelect(COutPoint& output)
-    {
-        setSelected.erase(output);
-    }
-    
-    void UnSelectAll()
-    {
-        setSelected.clear();
-    }
-
-    void ListSelected(std::vector<COutPoint>& vOutpoints)
-    {
-        vOutpoints.assign(setSelected.begin(), setSelected.end());
-    }
+    void SetNull();
+    bool HasSelected() const;
+    bool IsSelected(const uint256& hash, unsigned int n) const;
+    void Select(COutPoint& output);
+    void UnSelect(COutPoint& output);
+    void UnSelectAll();
+    void ListSelected(std::vector<COutPoint>& vOutpoints);
         
 private:
     std::set<COutPoint> setSelected;