aboutsummaryrefslogtreecommitdiff
path: root/parse_csv.h
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2021-10-18 12:28:15 -0700
committerJohn Denker <jsd@av8n.com>2021-10-18 12:28:15 -0700
commitb9e2078e5a007ec8c26605f2ab76dd14c20a1e9f (patch)
treef8d26f33f82d44fdd51a99621993e0f8acae04d8 /parse_csv.h
parentdf32aaa04e93ec4f83a4eb245970009e467b59d5 (diff)
relocate count_header code to more appropriate file
Diffstat (limited to 'parse_csv.h')
-rw-r--r--parse_csv.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/parse_csv.h b/parse_csv.h
index 362c478..771e8fe 100644
--- a/parse_csv.h
+++ b/parse_csv.h
@@ -31,4 +31,7 @@ std::vector<datum> readCSVRow(std::istream& input);
template <class datum = qstring>
std::vector<std::vector<datum> > readCSV(std::istream &in);
+template<class datum = qstring>
+int count_header(std::vector<std::vector<datum> > const aoa);
+
#endif