summaryrefslogtreecommitdiff
path: root/methods.h
diff options
context:
space:
mode:
Diffstat (limited to 'methods.h')
-rw-r--r--methods.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/methods.h b/methods.h
new file mode 100644
index 0000000000..944eb8829c
--- /dev/null
+++ b/methods.h
@@ -0,0 +1,22 @@
+/************************************************
+
+ methods.h -
+
+ $Author$
+ $Revision$
+ $Date$
+ created at: Fri Jul 29 14:43:03 JST 1994
+
+************************************************/
+#ifndef METHOD_H
+#define METHOD_H
+
+struct SMethod {
+ struct node *node;
+ struct RClass *origin;
+ ID id;
+ int count;
+ int undef;
+};
+
+#endif