diff options
Diffstat (limited to 'include/GMPString.h')
-rw-r--r-- | include/GMPString.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/include/GMPString.h b/include/GMPString.h index 77364bf..d1c7424 100644 --- a/include/GMPString.h +++ b/include/GMPString.h @@ -1,18 +1,18 @@ -#ifndef __GMPSTRING_H__ -#define __GMPSTRING_H__ -#include <gmpxx.h> -#include "BString.h" - -class GMPString : public Base { - public: - GMPString(const GMPString &); - GMPString(const mpz_class &); - GMPString(const mpq_class &); - GMPString(const mpf_class &); - ~GMPString(); - operator String() const; - private: - char * str; -}; - -#endif +#ifndef __GMPSTRING_H__
+#define __GMPSTRING_H__
+#include <gmpxx.h>
+#include "BString.h"
+
+class GMPString : public Base {
+ public:
+ GMPString(const GMPString &);
+ GMPString(const mpz_class &);
+ GMPString(const mpq_class &);
+ GMPString(const mpf_class &);
+ ~GMPString();
+ operator String() const;
+ private:
+ char * str;
+};
+
+#endif
|