summaryrefslogtreecommitdiff
path: root/MLKRatio.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-15 16:31:15 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-15 16:31:15 +0200
commitc2efa347a8e5f1d83427c34defa953e594a2bb12 (patch)
tree95aae957b63f4b7e9db4095a3a608a3b077aaece /MLKRatio.h
parent915e7a81737866a5bf8e9b39fea20716ad18bce7 (diff)
MLKReader: Read numbers.
Diffstat (limited to 'MLKRatio.h')
-rw-r--r--MLKRatio.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/MLKRatio.h b/MLKRatio.h
new file mode 100644
index 0000000..c67d7dd
--- /dev/null
+++ b/MLKRatio.h
@@ -0,0 +1,34 @@
+/* -*- mode: objc; coding: utf-8 -*- */
+/* Étoilisp/Mulklisp, a Common Lisp subset for the Étoilé runtime.
+ * Copyright (C) 2008 Matthias Andreas Benkard.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#import "MLKLispValue.h"
+
+@class NSString, MLKInteger;
+
+
+@interface MLKRatio : MLKLispValue
+{
+ MLKInteger *numerator;
+ MLKInteger *denominator;
+}
+
++(MLKRatio *) ratioWithNumeratorString:(NSString *)numerString
+ denominatorString:(NSString *)denomString;
+
+-(void) dealloc;
+@end