![]() |
Master Core
v0.0.9 - 2abfd2849db8ba7a83957c64eb976b406713c123
|
#include <script.h>
Public Member Functions | |
CScriptNum (const int64_t &n) | |
CScriptNum (const std::vector< unsigned char > &vch) | |
bool | operator== (const int64_t &rhs) const |
bool | operator!= (const int64_t &rhs) const |
bool | operator<= (const int64_t &rhs) const |
bool | operator< (const int64_t &rhs) const |
bool | operator>= (const int64_t &rhs) const |
bool | operator> (const int64_t &rhs) const |
bool | operator== (const CScriptNum &rhs) const |
bool | operator!= (const CScriptNum &rhs) const |
bool | operator<= (const CScriptNum &rhs) const |
bool | operator< (const CScriptNum &rhs) const |
bool | operator>= (const CScriptNum &rhs) const |
bool | operator> (const CScriptNum &rhs) const |
CScriptNum | operator+ (const int64_t &rhs) const |
CScriptNum | operator- (const int64_t &rhs) const |
CScriptNum | operator+ (const CScriptNum &rhs) const |
CScriptNum | operator- (const CScriptNum &rhs) const |
CScriptNum & | operator+= (const CScriptNum &rhs) |
CScriptNum & | operator-= (const CScriptNum &rhs) |
CScriptNum | operator- () const |
CScriptNum & | operator= (const int64_t &rhs) |
CScriptNum & | operator+= (const int64_t &rhs) |
CScriptNum & | operator-= (const int64_t &rhs) |
int | getint () const |
std::vector< unsigned char > | getvch () const |
Static Public Member Functions | |
static std::vector< unsigned char > | serialize (const int64_t &value) |
Static Public Attributes | |
static const size_t | nMaxNumSize = 4 |
Static Private Member Functions | |
static int64_t | set_vch (const std::vector< unsigned char > &vch) |
Private Attributes | |
int64_t | m_value |
|
inlineexplicit |
Definition at line 43 of file script.h.
References m_value.
Referenced by operator+(), and operator-().
|
inlineexplicit |
Definition at line 48 of file script.h.
References m_value, nMaxNumSize, and set_vch().
|
inline |
Definition at line 105 of file script.h.
References m_value.
Referenced by EvalScript(), and ValueString().
|
inline |
Definition at line 114 of file script.h.
References m_value, and serialize().
Referenced by EvalScript(), and CScript::operator<<().
|
inline |
|
inline |
Definition at line 63 of file script.h.
References m_value, and operator!=().
Referenced by operator!=().
|
inline |
Definition at line 69 of file script.h.
References CScriptNum(), and m_value.
|
inline |
Definition at line 71 of file script.h.
References m_value, and operator+().
Referenced by operator+().
|
inline |
Definition at line 74 of file script.h.
References m_value, and operator+=().
Referenced by operator+=().
|
inline |
|
inline |
Definition at line 70 of file script.h.
References CScriptNum(), and m_value.
|
inline |
Definition at line 72 of file script.h.
References m_value, and operator-().
Referenced by operator-().
|
inline |
Definition at line 77 of file script.h.
References CScriptNum(), and m_value.
|
inline |
Definition at line 75 of file script.h.
References m_value, and operator-=().
Referenced by operator-=().
|
inline |
|
inline |
Definition at line 58 of file script.h.
References m_value.
Referenced by operator<().
|
inline |
Definition at line 65 of file script.h.
References m_value, and operator<().
|
inline |
|
inline |
Definition at line 64 of file script.h.
References m_value, and operator<=().
Referenced by operator<=().
|
inline |
|
inline |
|
inline |
Definition at line 62 of file script.h.
References m_value, and operator==().
Referenced by operator==().
|
inline |
Definition at line 60 of file script.h.
References m_value.
Referenced by operator>().
|
inline |
Definition at line 67 of file script.h.
References m_value, and operator>().
|
inline |
|
inline |
Definition at line 66 of file script.h.
References m_value, and operator>=().
Referenced by operator>=().
|
inlinestatic |
Definition at line 119 of file script.h.
Referenced by getvch(), and CScript::push_int64().
|
inlinestaticprivate |
Definition at line 156 of file script.h.
Referenced by CScriptNum().
|
private |
Definition at line 173 of file script.h.
Referenced by CScriptNum(), getint(), getvch(), operator!=(), operator+(), operator+=(), operator-(), operator-=(), operator<(), operator<=(), operator=(), operator==(), operator>(), and operator>=().
|
static |
Definition at line 153 of file script.h.
Referenced by CScriptNum().