src/FilesystemCommand.h
branchv_0
changeset 31 c64e1588f428
parent 29 6f15f18d2abf
child 32 bccda5688d71
--- a/src/FilesystemCommand.h	Sat Jan 11 00:58:35 2020 +0100
+++ b/src/FilesystemCommand.h	Sat Jan 11 18:13:30 2020 +0100
@@ -37,7 +37,7 @@
 #include "AttributeFinder.h"
 #include "FileAttributeFinder.h"
 #include "XattrAttributeFinder.h"
-#include "ExecAttributeFinder.h"
+#include "StreamletAttributeFinder.h"
 
 namespace relpipe {
 namespace in {
@@ -51,12 +51,12 @@
 	std::wstring_convert<codecvt_utf8<wchar_t>> convertor; // TODO: support also other encodings.
 
 	FileAttributeFinder fileAttributeFinder;
-	ExecAttributeFinder execAttributeFinder;
+	StreamletAttributeFinder execAttributeFinder;
 	XattrAttributeFinder xattrAttributeFinder;
 
 	std::map<string_t, AttributeFinder*> attributeFinders{
 		{RequestedField::GROUP_FILE, &fileAttributeFinder},
-		{RequestedField::GROUP_EXEC, &execAttributeFinder},
+		{RequestedField::GROUP_STREAMLET, &execAttributeFinder},
 		{RequestedField::GROUP_XATTR, &xattrAttributeFinder}};
 
 	void reset(std::stringstream& stream) {