summaryrefslogtreecommitdiff
path: root/project2/fileRows.h
blob: 0fcc39431b5be45ba232e81259f4cd82194b258c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef FILEROWS_H
#define FILEROWS_H

#include "streamRows.h"
#include "fileStarGlibIoChannel.h"

class CommonObjects;

class FileRows : public StreamRows {
	public:
		FileRows(const xmlpp::Element * p);
		~FileRows();

		void execute(const RowProcessor *) const;
		virtual void loadComplete(const CommonObjects *);
		virtual void setFilter(const Glib::ustring &);

		const Variable path;

	protected:
		virtual FileStarChannel doOpen() const;
};

#endif