source:
app/src/kor/corlist.h
@
9e0afb5
Last change on this file since 9e0afb5 was ac7d970, checked in by pawelk <pawelk@…>, 17 years ago | |
---|---|
|
|
File size: 390 bytes |
Line | |
---|---|
1 | #ifndef _CORLIST_H |
2 | #define _CORLIST_H |
3 | |
4 | //#include <stdio.h> |
5 | #include "common_cor.h" |
6 | |
7 | typedef struct { char a[MAX_LEN+1],b[MAX_LEN+1]; Weight w; short la,lb; } CorWeight; |
8 | |
9 | class CorList |
10 | { |
11 | private: |
12 | CorWeight *List; |
13 | int total; |
14 | public: |
15 | Weight cor_stdcor, cor_xchg; |
16 | int loadCWL(char *Name); |
17 | Weight GetValue(char X[100], char Y[100], Weight (*H2)[100], int i, int j); |
18 | }; |
19 | |
20 | #endif |
Note: See TracBrowser
for help on using the repository browser.