20 lines
255 B
C++
20 lines
255 B
C++
|
|
#ifndef SEQUENCE_H
|
|
#define SEQUENCE_H SEQUENCE_H
|
|
|
|
#include <vector>
|
|
#include "ElementSet.h"
|
|
|
|
class Sequence
|
|
{
|
|
private:
|
|
int myMutationCount;
|
|
std::vector<ElementSet> myElements;
|
|
|
|
public:
|
|
Sequence();
|
|
Sequence(char * initializer);
|
|
};
|
|
|
|
#endif
|