Last change
on this file since 154 was
140,
checked in by sz, 11 years ago
|
introducing the Foraminifera encoding (format 'F')
|
-
Property svn:eol-style set to
native
|
File size:
591 bytes
|
Rev | Line | |
---|
[140] | 1 | // This file is a part of the Framsticks GDK. |
---|
| 2 | // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
| 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
| 5 | #ifndef _CONV_FF_H_ |
---|
| 6 | #define _CONV_FF_H_ |
---|
| 7 | |
---|
| 8 | #include <frams/util/multimap.h> |
---|
| 9 | #include <frams/util/sstring.h> |
---|
| 10 | #include <frams/genetics/genoconv.h> |
---|
| 11 | |
---|
| 12 | |
---|
| 13 | |
---|
| 14 | // The f9->f0 converter |
---|
| 15 | class GenoConv_fF0: public GenoConverter |
---|
| 16 | { |
---|
| 17 | public: |
---|
| 18 | GenoConv_fF0(); |
---|
| 19 | |
---|
| 20 | //implementation of the GenoConverter method |
---|
| 21 | SString convert(SString &in, MultiMap *map); |
---|
| 22 | |
---|
| 23 | protected: |
---|
| 24 | //auxiliary methods |
---|
| 25 | //... |
---|
| 26 | }; |
---|
| 27 | |
---|
| 28 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.