Skip to content

Commit

Permalink
Refs #11101 Constructor wired up properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
ianbush committed Feb 17, 2015
1 parent b94b3f4 commit 775f952
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -41,7 +41,7 @@ namespace API
{
public:
/// Constructor
FileBackedExperimentInfo(::NeXus::File file, std::string groupName);
FileBackedExperimentInfo(::NeXus::File *file, std::string groupName);
/// Virtual destructor
virtual ~FileBackedExperimentInfo();

Expand Down
4 changes: 3 additions & 1 deletion Code/Mantid/Framework/API/src/FileBackedExperimentInfo.cpp
Expand Up @@ -12,8 +12,10 @@ Kernel::Logger g_log("FileBackedExperimentInfo");
//----------------------------------------------------------------------------------------------
/** Constructor
*/
FileBackedExperimentInfo::FileBackedExperimentInfo(::NeXus::File file, std::string groupName)
FileBackedExperimentInfo::FileBackedExperimentInfo(::NeXus::File *file, std::string groupName)
{
this->file = file;
this->groupName = groupName;
}

//----------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 775f952

Please sign in to comment.