gvsu/cs677/pa4/Sequence.h
josh 750c1e2cf3 updated pa4
git-svn-id: svn://anubis/gvsu@299 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-11-30 19:58:06 +00:00

25 lines
429 B
C++

#ifndef SEQUENCE_H
#define SEQUENCE_H SEQUENCE_H
#include <vector>
#include <iostream>
#include "ElementSet.h"
class Sequence
{
private:
int myMutationCount;
std::vector<ElementSet> myElements;
public:
Sequence();
Sequence(int size);
Sequence(const char * initializer);
Sequence parent(const Sequence & other);
friend std::ostream & operator<<(std::ostream & out, const Sequence & s);
};
#endif