Rational representation
[ipdf/code.git] / src / arbint.h
1 #ifndef _ARBINT_H
2 #define _ARBINT_H
3
4 #include <vector>
5
6 namespace IPDF
7 {
8         class Arbint
9         {
10                 public:
11                         Arbint(int64_t i);
12                         ~Arbint() {}
13                         Arbint(const Arbint & cpy);
14
15                         std::string Str() const;
16                 
17                 private:                
18                         std::vector<uint32_t> m_words;
19                         bool m_sign;
20                         
21                         
22                         
23         };      
24 }
25
26 #endif //_ARBINT_H

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