source: src/kor/corlist.h @ a15e59b

Last change on this file since a15e59b was 5f4d9c3, checked in by Maciej Prill <mprill@…>, 12 years ago

Rewritten the build system, added lem UTF-8 version.

  • Property mode set to 100644
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.