50 class_<Workspace, bases<DataItem>, boost::noncopyable>(
"Workspace", no_init)
51 .def(
"getName", &
getName, arg(
"self"),
"Returns the name of the workspace. This could be an empty string")
53 .def(
"isGroup", &
Workspace::isGroup, arg(
"self"),
"Returns if it is a group workspace")
54 .def(
"setTitle", &
Workspace::setTitle, (arg(
"self"), arg(
"title")),
"Set the title of the workspace")
56 "Returns the comment field on the workspace")
58 "Set the comment field of the workspace")
60 Workspace_isDirtyOverloads((arg(
"self"), arg(
"n")),
"True if the workspace has run "
61 "more than n algorithms "
64 "Returns the memory footprint of the workspace in KB")
66 return_value_policy<reference_existing_object>(),
67 "Return read-only access to the "
68 ":class:`~mantid.api.WorkspaceHistory`");
This class stores information about the Workspace History used by algorithms on a workspace and the e...