summaryrefslogtreecommitdiff
path: root/experimental/jvanderw/obj-c/ModUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/jvanderw/obj-c/ModUtil.h')
-rw-r--r--experimental/jvanderw/obj-c/ModUtil.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/experimental/jvanderw/obj-c/ModUtil.h b/experimental/jvanderw/obj-c/ModUtil.h
deleted file mode 100644
index 27cffa3..0000000
--- a/experimental/jvanderw/obj-c/ModUtil.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// Copyright (c) 2011 Jess VanDerwalker
-//
-// Interface for utility functions for calulating the modulus in
-// various circumstances.
-//
-
-#import <Foundation/NSObject.h>
-
-@interface ModUtil: NSObject {
- int value; // The value on the lhs of mod operation
- int mod; // The modulus to use
- int pwr; // The power x will be raised to
- int rem; // The rhs of the mod operation
-}
-
--(void) setValueModPower: (int) x andSetMod: (int) n andSetPower: (int) p;
--(int) getMod;
-
-@end