Skip to content
Snippets Groups Projects
ISaveable.cpp 661 B
Newer Older
#include "MantidAPI/ISaveable.h"
#include "MantidKernel/System.h"

namespace Mantid
{
namespace API
{


  //----------------------------------------------------------------------------------------------
  /** Constructor
   */
  ISaveable::ISaveable()
  : m_id(0)
  {
  }

  //----------------------------------------------------------------------------------------------
  /** Constructor
   */
  ISaveable::ISaveable(const size_t id)
  : m_id(id)
  {
  }

  //----------------------------------------------------------------------------------------------
  /** Destructor
   */
  ISaveable::~ISaveable()
  {
  }
  


} // namespace Mantid
} // namespace API