]> git.sven.stormbind.net Git - sven/vym.git/blob - src/export-csv.h
Replace Pierre as the maintainer
[sven/vym.git] / src / export-csv.h
1 #ifndef EXPORT_CSV_H
2 #define EXPORT_CSV_H
3
4 #include "export-base.h"
5
6 class ExportCSV : public ExportBase {
7   public:
8     ExportCSV();
9     void doExport();
10 };
11
12 #endif