// linked_stgRNA class' definitions #pragma once class linked_stgRNA{ int counter; linked_stgRNA* child; string kmer; int count; bool self; public: linked_stgRNA(); //~linked_stgRNA() {cout << "Destroyed " << endl;}; void set_count(int x); void set_kmer(const string stgRNA); void set_self(bool self_value); const int get_count(); const string get_kmer(); bool is_self(); linked_stgRNA* set_child_pointer(const string stgRNA, int hit_count); linked_stgRNA* get_child_pointer(); };