source: cpp/frams/genetics/fF/conv_fF.h @ 140

Last change on this file since 140 was 140, checked in by sz, 10 years ago

introducing the Foraminifera encoding (format 'F')

  • Property svn:eol-style set to native
File size: 591 bytes
Line 
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
15class GenoConv_fF0: public GenoConverter
16{
17public:
18        GenoConv_fF0();
19
20        //implementation of the GenoConverter method
21        SString convert(SString &in, MultiMap *map);
22
23protected:
24        //auxiliary methods
25        //...
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.