source: app/src/kor/corlist.h @ a26cf42

Last change on this file since a26cf42 was ac7d970, checked in by pawelk <pawelk@…>, 16 years ago

Uaktualnilismy kora.

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@23 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100755
File size: 390 bytes
Line 
1#ifndef _CORLIST_H
2#define _CORLIST_H
3
4//#include <stdio.h>
5#include "common_cor.h"
6
7typedef struct { char a[MAX_LEN+1],b[MAX_LEN+1]; Weight w; short la,lb; } CorWeight;
8
9class 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.