Index: /trunk/BNC/bncmodel.cpp
===================================================================
--- /trunk/BNC/bncmodel.cpp	(revision 3393)
+++ /trunk/BNC/bncmodel.cpp	(revision 3394)
@@ -1185,14 +1185,4 @@
 }
  
-bool findInVector(const std::vector<QString>& vv, const QString& str) {
-  std::vector<QString>::const_iterator it;
-  for (it = vv.begin(); it != vv.end(); ++it) {
-    if ( (*it) == str) {
-      return true;
-    }
-  }
-  return false;
-}
-
 // Update Step (private - loop over outliers)
 ////////////////////////////////////////////////////////////////////////////
Index: /trunk/BNC/bncutils.cpp
===================================================================
--- /trunk/BNC/bncutils.cpp	(revision 3393)
+++ /trunk/BNC/bncutils.cpp	(revision 3394)
@@ -374,2 +374,15 @@
                dateTime.time().msec() / 1000.0) / 60.0) / 60.0) / 24.0;
 }
+
+// 
+////////////////////////////////////////////////////////////////////////////
+bool findInVector(const vector<QString>& vv, const QString& str) {
+  std::vector<QString>::const_iterator it;
+  for (it = vv.begin(); it != vv.end(); ++it) {
+    if ( (*it) == str) {
+      return true;
+    }
+  }
+  return false;
+}
+
Index: /trunk/BNC/bncutils.h
===================================================================
--- /trunk/BNC/bncutils.h	(revision 3393)
+++ /trunk/BNC/bncutils.h	(revision 3394)
@@ -25,4 +25,6 @@
 #ifndef BNCUTILS_H
 #define BNCUTILS_H
+
+#include <vector>
 
 #include <QString>
@@ -68,3 +70,5 @@
 void mjdFromDateAndTime(const QDateTime& dateTime, int& mjd, double& dayfrac);
 
+bool findInVector(const std::vector<QString>& vv, const QString& str);
+
 #endif
