Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / pairwise / PairwiseAlignBase.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/pairwise/PairwiseAlignBase.h b/website/archive/binaries/mac/src/clustalw/src/pairwise/PairwiseAlignBase.h
deleted file mode 100644 (file)
index 67e1813..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * Author: Mark Larkin
- * 
- * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
- */
-#ifndef PAIRWISEALIGNBASE_H
-#define PAIRWISEALIGNBASE_H
-
-#include <vector>
-#include "../alignment/Alignment.h"
-
-namespace clustalw
-{
-
-class PairwiseAlignBase
-{
-    public:
-  virtual ~PairwiseAlignBase(){};
-        /* Functions */
-        virtual void pairwiseAlign(Alignment *alignPtr, DistMatrix *distMat, int iStart, 
-                                   int iEnd, int jStart, int jEnd) = 0; 
-        /* Attributes */
-
-    private:
-        /* Functions */
-
-        /* Attributes */
-};
-
-}
-#endif