Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 5c035b3d authored by LUISELLI Juliette's avatar LUISELLI Juliette
Browse files

add chrsm_ member to MutationEvent.h

parent e596b6e9
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@
#include <cstdint>
#include "ae_enums.h"
namespace aevol {
......@@ -69,6 +70,11 @@ class MutationEvent {
int32_t type() { return type_; };
#ifdef __EUKARYOTE
Chrsm chrsm() { return chrsm_; };
void set_chrsm(Chrsm chrsm) { chrsm_ = chrsm; };
#endif
int32_t pos_1() { return pos_1_; }
int32_t pos_2() { return pos_2_; }
int32_t pos_3() { return pos_3_; }
......@@ -85,6 +91,10 @@ class MutationEvent {
#endif
private:
#ifdef __EUKARYOTE
Chrsm chrsm_;
#endif
int32_t type_;
int32_t pos_1_,pos_2_,pos_3_,pos_4_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment