xcal
基于 C++23 的现代图形渲染引擎
载入中...
搜索中...
未找到
fraction.h
浏览该文件的文档.
1#pragma once
2#ifndef XCMATH_SYMBOLSYSTEM_FRACTION_H
3#define XCMATH_SYMBOLSYSTEM_FRACTION_H
4#include <vector>
5
6#include "./ops/ops.h"
7#include "./xcmathConfig.h"
8namespace xcmath {
9 class Symbol;
11 public:
12 Fraction() = default;
13 ~Fraction() = default;
14
15 virtual Fraction& operator+();
16};
17}; // namespace xcmath
18
19#endif // XCMATH_SYMBOLSYSTEM_FRACTION_H
virtual Fraction & operator+()
~Fraction()=default
Fraction()=default
Compiler-specific type information handling for MSVC
Definition complex.hpp:12
#define XCMATH_API