summaryrefslogtreecommitdiff
path: root/bindings/swig/swbuf.i
diff options
context:
space:
mode:
authorRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:49 -0400
committerRoberto C. Sanchez <roberto@connexer.com>2014-03-29 10:53:49 -0400
commit8c8aa6b07e595cfac56838b5964ab3e96051f1b2 (patch)
treeda38e2c1979148dbd3b0c7b87f930746f5ba7f44 /bindings/swig/swbuf.i
parent8d3fc864d094eeadc721f8e93436b37a5fab173e (diff)
Imported Upstream version 1.5.7
Diffstat (limited to 'bindings/swig/swbuf.i')
-rw-r--r--bindings/swig/swbuf.i65
1 files changed, 65 insertions, 0 deletions
diff --git a/bindings/swig/swbuf.i b/bindings/swig/swbuf.i
new file mode 100644
index 0000000..1df97ac
--- /dev/null
+++ b/bindings/swig/swbuf.i
@@ -0,0 +1,65 @@
+%{
+#include "swbuf.h"
+using namespace sword;
+%}
+
+class SWBuf {
+public:
+ SWBuf(const char *initVal = 0);
+ SWBuf(char initVal);
+ SWBuf(const SWBuf &other);
+ virtual ~SWBuf();
+
+ inline void setFillByte(char ch) { fillByte = ch; }
+ inline char getFillByte() { return fillByte; }
+ inline const char *c_str() const;
+ inline char &charAt(unsigned int pos) { return ((pos <= (unsigned int)(end - buf)) ? buf[pos] : nullStr[0]); }
+ inline unsigned int size() const { return length(); }
+ inline unsigned int length() const { return end - buf; }
+
+ void set(const char *newVal);
+ void set(const SWBuf &newVal);
+ void setSize(unsigned int len);
+ void append(const char *str, int max = -1);
+ inline void append(const SWBuf &str, int max = -1) { append(str.c_str(), max); }
+ inline void append(char ch);
+ void appendFormatted(const char *format, ...);
+
+ inline char *getRawData();
+
+ /*
+ inline operator const char *() const { return c_str(); }
+ inline char &operator[](unsigned int pos) { return charAt(pos); }
+ inline char &operator[](int pos) { return charAt((unsigned int)pos); }
+ inline SWBuf &operator =(const char *newVal) { set(newVal); return *this; }
+ inline SWBuf &operator =(const SWBuf &other) { set(other); return *this; }
+ inline SWBuf &operator +=(const char *str) { append(str); return *this; }
+ inline SWBuf &operator +=(char ch) { append(ch); return *this; }
+ inline SWBuf &operator -=(unsigned int len) { setSize(length()-len); return *this; }
+ inline SWBuf &operator --(int) { operator -=(1); return *this; }
+ inline SWBuf operator +(const SWBuf &other) const {
+ SWBuf retVal = buf;
+ retVal += other;
+ return retVal;
+ }
+ inline SWBuf operator +(char ch) const { return (*this) + SWBuf(ch); }
+ */
+
+ int compare(const SWBuf &other) const;
+
+ /*
+ inline bool operator ==(const SWBuf &other) const;
+ inline bool operator !=(const SWBuf &other) const;
+ inline bool operator > (const SWBuf &other) const;
+ inline bool operator < (const SWBuf &other) const;
+ inline bool operator <=(const SWBuf &other) const;
+ inline bool operator >=(const SWBuf &other) const;
+
+ inline bool operator ==(const char *other) const;
+ inline bool operator !=(const char *other) const;
+ inline bool operator > (const char *other) const;
+ inline bool operator < (const char *other) const;
+ inline bool operator <=(const char *other) const;
+ inline bool operator >=(const char *other) const;
+ */
+};