Rational representation
[ipdf/code.git] / src / arbint.h
diff --git a/src/arbint.h b/src/arbint.h
new file mode 100644 (file)
index 0000000..d90a43b
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef _ARBINT_H
+#define _ARBINT_H
+
+#include <vector>
+
+namespace IPDF
+{
+       class Arbint
+       {
+               public:
+                       Arbint(int64_t i);
+                       ~Arbint() {}
+                       Arbint(const Arbint & cpy);
+
+                       std::string Str() const;
+               
+               private:                
+                       std::vector<uint32_t> m_words;
+                       bool m_sign;
+                       
+                       
+                       
+       };      
+}
+
+#endif //_ARBINT_H

UCC git Repository :: git.ucc.asn.au