X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dist.h;h=b914d0d2b1004c56812cea18ea05d0ab1a787ae3;hb=3a13eff5c26d6fc156a299c9fa7f5497bded94a0;hp=6e42ae33d095be047bffc222cbf07bde85a8424e;hpb=02909d6cae9963ba00dc746969a370fa8ca934fc;p=mothur.git diff --git a/dist.h b/dist.h index 6e42ae3..b914d0d 100644 --- a/dist.h +++ b/dist.h @@ -17,14 +17,15 @@ class Dist { public: - Dist(){dist = 0;} + Dist(){dist = 0; m = MothurOut::getInstance(); } virtual ~Dist() {} virtual void calcDist(Sequence, Sequence) = 0; double getDist() { return dist; } protected: double dist; + MothurOut* m; }; /**************************************************************************************************/ -#endif \ No newline at end of file +#endif