summaryrefslogtreecommitdiffstats
path: root/sigscript/CoinListWrapper.cpp
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-12-07 01:03:48 -0500
committerBen Boeckel <MathStuf@gmail.com>2008-12-07 01:03:48 -0500
commit7459a5a34a5bcf7011c4164e3c92c7770da09514 (patch)
tree57c53a9fad0dbff587bc8249ec2e0d09308f5f7a /sigscript/CoinListWrapper.cpp
parent67aefdbacc16395bda2a8bfb14004190ced25e00 (diff)
downloadsigen-7459a5a34a5bcf7011c4164e3c92c7770da09514.tar.gz
sigen-7459a5a34a5bcf7011c4164e3c92c7770da09514.tar.xz
sigen-7459a5a34a5bcf7011c4164e3c92c7770da09514.zip
Renamed CoinListObject to CoinListItem and added documentation for it
Diffstat (limited to 'sigscript/CoinListWrapper.cpp')
-rw-r--r--sigscript/CoinListWrapper.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/sigscript/CoinListWrapper.cpp b/sigscript/CoinListWrapper.cpp
index a7186c45..bc525784 100644
--- a/sigscript/CoinListWrapper.cpp
+++ b/sigscript/CoinListWrapper.cpp
@@ -19,7 +19,7 @@
#include "CoinListWrapper.h"
// Sigscript includes
-#include "CoinListObjectWrapper.h"
+#include "CoinListItemWrapper.h"
#include "SigmodWrapper.h"
Sigscript::CoinListWrapper* Sigscript::CoinListWrapper::create(const Sigmod::CoinList* coinList, SigmodWrapper* parent)
@@ -46,12 +46,12 @@ Sigcore::Script Sigscript::CoinListWrapper::script() const
return m_coinList->script();
}
-Sigscript::CoinListObjectWrapper* Sigscript::CoinListWrapper::object(const int index)
+Sigscript::CoinListItemWrapper* Sigscript::CoinListWrapper::item(const int index)
{
- return CoinListObjectWrapper::create(m_coinList->object(index), this);
+ return CoinListItemWrapper::create(m_coinList->item(index), this);
}
-int Sigscript::CoinListWrapper::objectCount() const
+int Sigscript::CoinListWrapper::itemCount() const
{
- return m_coinList->objectCount();
+ return m_coinList->itemCount();
}