Mantid
Loading...
Searching...
No Matches
IValidator.cpp
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
9#include <boost/python/class.hpp>
10#include <boost/python/register_ptr_to_python.hpp>
11
13using namespace boost::python;
14
16
18 register_ptr_to_python<std::shared_ptr<IValidator>>();
19
20 class_<IValidator, boost::noncopyable>("IValidator", no_init);
21}
#define GET_POINTER_SPECIALIZATION(TYPE)
Definition: GetPointer.h:17
void export_IValidator()
Definition: IValidator.cpp:17
IValidator is the basic interface for all validators for properties.
Definition: IValidator.h:43