summaryrefslogtreecommitdiff
path: root/methods.h
blob: dffd70197cc75a4bfc920eeaf55ff9c6d9a89496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/************************************************

  methods.h -

  $Author: matz $
  $Revision: 1.2 $
  $Date: 1994/08/12 04:47:38 $
  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