Last change
on this file was
566,
checked in by westram, 23 years ago
|
Most changes are made due to activating more warnings for the c++ compiler (linux)
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
650 bytes
|
Line | |
---|
1 | #ifndef PRD_PAIR_HXX |
---|
2 | #define PRD_PAIR_HXX |
---|
3 | |
---|
4 | #include <cstdio> |
---|
5 | #ifndef PRD_ITEM_HXX |
---|
6 | #include "PRD_Item.hxx" |
---|
7 | #endif |
---|
8 | |
---|
9 | class Pair { |
---|
10 | |
---|
11 | public: |
---|
12 | |
---|
13 | Item *one; |
---|
14 | Item *two; |
---|
15 | double rating; |
---|
16 | |
---|
17 | Pair ( Item *one_, Item *two_, double rating_ ); |
---|
18 | Pair (); |
---|
19 | ~Pair () {}; |
---|
20 | |
---|
21 | void print ( const char *prefix, const char *suffix, const char *sequence_ ); // print pair with the values of the items |
---|
22 | const char *get_result ( const char *sequence_ , int max_primer_length, int max_position_length, int max_length_length); |
---|
23 | const char * get_primers ( const char *sequence_ ); |
---|
24 | }; |
---|
25 | |
---|
26 | #else |
---|
27 | #error PRD_Pair.hxx included twice |
---|
28 | #endif // PRD_Pair_HXX |
---|
Note: See
TracBrowser
for help on using the repository browser.