aboutsummaryrefslogtreecommitdiff
path: root/src/read_file_command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/read_file_command.h')
-rw-r--r--src/read_file_command.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/read_file_command.h b/src/read_file_command.h
index 094bb3d..837ec04 100644
--- a/src/read_file_command.h
+++ b/src/read_file_command.h
@@ -9,7 +9,7 @@
namespace xalan = xalanc_1_11;
-class FunctionFileRead : public xalan::Function {
+class FunctionReadFile : public xalan::Function {
public:
virtual xalan::XObjectPtr execute(
xalan::XPathExecutionContext& executionContext,
@@ -43,7 +43,7 @@ class FunctionFileRead : public xalan::Function {
);
}
- virtual FunctionFileRead* clone(xalan::MemoryManager& manager) const {
+ virtual FunctionReadFile* clone(xalan::MemoryManager& manager) const {
return xalan::XalanCopyConstruct(manager, *this);
}
@@ -55,7 +55,7 @@ class FunctionFileRead : public xalan::Function {
}
private:
- FunctionFileRead& operator=(const FunctionFileRead&);
- bool operator==(const FunctionFileRead&) const;
+ FunctionReadFile& operator=(const FunctionReadFile&);
+ bool operator==(const FunctionReadFile&) const;
};