Skip to content
Snippets Groups Projects
Commit d04e3cab authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #2835: Stub for a MDSplitBox class.

parent ed0d02c2
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,7 @@ set ( SRC_FILES
src/MDEventWorkspace.cpp
src/MDGridBox.cpp
src/MDHistoWorkspace.cpp
src/MDSplitBox.cpp
src/MakeDiffractionMDEventWorkspace.cpp
src/OneStepMDEW.cpp
)
......@@ -40,6 +41,7 @@ set ( INC_FILES
inc/MantidMDEvents/MDEventWorkspace.h
inc/MantidMDEvents/MDGridBox.h
inc/MantidMDEvents/MDHistoWorkspace.h
inc/MantidMDEvents/MDSplitBox.h
inc/MantidMDEvents/MakeDiffractionMDEventWorkspace.h
inc/MantidMDEvents/OneStepMDEW.h
)
......@@ -59,6 +61,7 @@ set ( TEST_FILES
test/MDEventWorkspaceTest.h
test/MDGridBoxTest.h
test/MDHistoWorkspaceTest.h
test/MDSplitBoxTest.h
test/MakeDiffractionMDEventWorkspaceTest.h
test/OneStepMDEWTest.h
)
......
#ifndef MANTID_MDEVENTS_MDSPLITBOX_H_
#define MANTID_MDEVENTS_MDSPLITBOX_H_
#include "MantidKernel/System.h"
namespace Mantid
{
namespace MDEvents
{
/** MDSplitBox : TODO: DESCRIPTION
*
* @author
* @date 2011-04-15 10:26:16.413856
*/
class DLLExport MDSplitBox
{
public:
MDSplitBox();
~MDSplitBox();
};
} // namespace Mantid
} // namespace MDEvents
#endif /* MANTID_MDEVENTS_MDSPLITBOX_H_ */
#include "MantidMDEvents/MDSplitBox.h"
#include "MantidKernel/System.h"
namespace Mantid
{
namespace MDEvents
{
//----------------------------------------------------------------------------------------------
/** Constructor
*/
MDSplitBox::MDSplitBox()
{
// TODO Auto-generated constructor stub
}
//----------------------------------------------------------------------------------------------
/** Destructor
*/
MDSplitBox::~MDSplitBox()
{
// TODO Auto-generated destructor stub
}
} // namespace Mantid
} // namespace MDEvents
#ifndef MANTID_MDEVENTS_MDSPLITBOXTEST_H_
#define MANTID_MDEVENTS_MDSPLITBOXTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidKernel/Timer.h"
#include "MantidKernel/System.h"
#include <iostream>
#include <iomanip>
#include "MantidMDEvents/MDSplitBox.h"
using namespace Mantid::MDEvents;
class MDSplitBoxTest : public CxxTest::TestSuite
{
public:
void test_Something()
{
}
};
#endif /* MANTID_MDEVENTS_MDSPLITBOXTEST_H_ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment