SHA256
merge
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
#pragma once
|
||||
#ifndef BETTERSTL_BIG_DECIMAL_H
|
||||
#define BETTERSTL_BIG_DECIMAL_H
|
||||
|
||||
#include <string>
|
||||
#include "BigInteger.hpp"
|
||||
#include <bstl/big_integer.hpp>
|
||||
|
||||
namespace bstl {
|
||||
|
||||
class BigDecimal {
|
||||
class BigDecimal {
|
||||
public:
|
||||
BigDecimal();
|
||||
BigDecimal(int value);
|
||||
@@ -70,3 +70,5 @@ private:
|
||||
};
|
||||
|
||||
} // namespace bstl
|
||||
|
||||
#endif //BETTERSTL_BIG_DECIMAL_H
|
||||
@@ -1,4 +1,5 @@
|
||||
#pragma once
|
||||
#ifndef BETTERSTL_BIG_INTEGER_HPP
|
||||
#define BETTERSTL_BIG_INTEGER_HPP
|
||||
|
||||
#include <string>
|
||||
|
||||
@@ -64,6 +65,6 @@ private:
|
||||
static std::string divAbs(const std::string& a, const std::string& b);
|
||||
};
|
||||
|
||||
using BitInteger = BigInteger;
|
||||
|
||||
} // namespace bstl
|
||||
|
||||
#endif //BETTERSTL_BIG_INTEGER_HPP
|
||||
@@ -0,0 +1,7 @@
|
||||
#ifndef BETTERSTL_BIG_NUMBERS_HPP
|
||||
#define BETTERSTL_BIG_NUMBERS_HPP
|
||||
|
||||
#include <bstl/biginteger.hpp>
|
||||
#include <bstl/bigdecimal.hpp>
|
||||
|
||||
#endif // BETTERSTL_BIG_NUMBERS_HPP
|
||||
@@ -1,4 +0,0 @@
|
||||
#ifndef BETTERSTL_BIGDECIMAL_H
|
||||
#define BETTERSTL_BIGDECIMAL_H
|
||||
|
||||
#endif //BETTERSTL_BIGDECIMAL_H
|
||||
@@ -1,4 +0,0 @@
|
||||
#ifndef BETTERSTL_BIGINTEGER_HPP
|
||||
#define BETTERSTL_BIGINTEGER_HPP
|
||||
|
||||
#endif //BETTERSTL_BIGINTEGER_HPP
|
||||
@@ -1,7 +0,0 @@
|
||||
#ifndef BETTERSTL_BIGNUMS_HPP
|
||||
#define BETTERSTL_BIGNUMS_HPP
|
||||
|
||||
#include <bstl/biginteger.hpp>
|
||||
#include <bstl/bigdecimal.hpp>
|
||||
|
||||
#endif //BETTERSTL_BIGNUMS_HPP
|
||||
@@ -1,7 +1,8 @@
|
||||
|
||||
#ifndef BETTERSTL_BSTL_HPP
|
||||
#include<bstl/BigDecimal.hpp>
|
||||
#include<bstlBigInteger.hpp>
|
||||
|
||||
#include<bstl/big_decimal.hpp>
|
||||
#include<bstl/big_integer.hpp>
|
||||
#include <bstl/bstlint.hpp>
|
||||
|
||||
#define BETTERSTL_BSTL_HPP
|
||||
#endif //BETTERSTL_BSTL_HPP
|
||||
|
||||
Reference in New Issue
Block a user