summaryrefslogtreecommitdiffstats
path: root/src/Numeric.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/Numeric.vala')
-rw-r--r--src/Numeric.vala9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Numeric.vala b/src/Numeric.vala
new file mode 100644
index 0000000..c4f8c07
--- /dev/null
+++ b/src/Numeric.vala
@@ -0,0 +1,9 @@
+namespace Eva {
+ public interface Numeric : Term {
+ public abstract int int_value { get; }
+ public abstract uint uint_value { get; }
+ public abstract long long_value { get; }
+ public abstract ulong ulong_value { get; }
+ public abstract double double_value { get; }
+ }
+}