Robert
12/10/2019, 6:01 PMauto ionspinlib = libmylib_symbols()-><http://kotlin.root.com|kotlin.root.com>.ionspin;
auto KBigInteger = ionspinlib.kotlin.bignum.integer.BigInteger;
class CBigInteger : libmylib_kref_com_ionspin_kotlin_bignum_integer_BigInteger { // KBigInteger
public:
CBigInteger(long amount) : KBigInteger.BigInteger(amount) {} // << PROBMLEM
// {
// big = KBigInteger.BigInteger(amount);
// }
operator long() const { return 10l; }
};
CBigInteger amount = 10l;
long longAmount = amount;
it seems like I can't use the dot-notation in the constructor call KBigInteger.BigInteger
Robert
12/10/2019, 6:03 PM