]> git.donarmstrong.com Git - mothur.git/blobdiff - alignmentcell.hpp
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / alignmentcell.hpp
diff --git a/alignmentcell.hpp b/alignmentcell.hpp
deleted file mode 100644 (file)
index 569198f..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef ALIGNMENTCELL_H
-#define ALIGNMENTCELL_H
-
-/*
- *  alignmentcell.hpp
- *  
- *
- *  Created by Pat Schloss on 12/15/08.
- *  Copyright 2008 Patrick D. Schloss. All rights reserved.
- *
- *     This class is pretty basic.  Each AlignmentCell object contains a pointer to the previous cell and different values
- *     used to calcualte the alignment.  Initially everything is set to zero and all pointers are set to 'x'
- *  
- */
-#include "mothurout.h"
-//********************************************************************************************************************
-
-class AlignmentCell {
-       
-public:
-       AlignmentCell();
-       char prevCell;
-       float cValue;
-       float dValue;
-       float iValue;
-};
-
-//********************************************************************************************************************
-
-#endif