mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
405f6d1dfd
Following commit 90d278, the object code generated by the python bindings of nanogui (github.com/wjakob/nanogui) went up by a whopping 12%. It turns out that that project has quite a few enums where we don't really care about arithmetic operators. This commit thus partially reverts the effects of #503 by introducing an additional attribute py::arithmetic() that must be specified if the arithmetic operators are desired.
69 lines
1.7 KiB
C++
69 lines
1.7 KiB
C++
/*
|
|
tests/test_enums.cpp -- enumerations
|
|
|
|
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
|
|
|
|
All rights reserved. Use of this source code is governed by a
|
|
BSD-style license that can be found in the LICENSE file.
|
|
*/
|
|
|
|
#include "pybind11_tests.h"
|
|
|
|
enum UnscopedEnum {
|
|
EOne = 1,
|
|
ETwo
|
|
};
|
|
|
|
enum class ScopedEnum {
|
|
Two = 2,
|
|
Three
|
|
};
|
|
|
|
enum Flags {
|
|
Read = 4,
|
|
Write = 2,
|
|
Execute = 1
|
|
};
|
|
|
|
class ClassWithUnscopedEnum {
|
|
public:
|
|
enum EMode {
|
|
EFirstMode = 1,
|
|
ESecondMode
|
|
};
|
|
|
|
static EMode test_function(EMode mode) {
|
|
return mode;
|
|
}
|
|
};
|
|
|
|
std::string test_scoped_enum(ScopedEnum z) {
|
|
return "ScopedEnum::" + std::string(z == ScopedEnum::Two ? "Two" : "Three");
|
|
}
|
|
|
|
test_initializer enums([](py::module &m) {
|
|
m.def("test_scoped_enum", &test_scoped_enum);
|
|
|
|
py::enum_<UnscopedEnum>(m, "UnscopedEnum", py::arithmetic())
|
|
.value("EOne", EOne)
|
|
.value("ETwo", ETwo)
|
|
.export_values();
|
|
|
|
py::enum_<ScopedEnum>(m, "ScopedEnum", py::arithmetic())
|
|
.value("Two", ScopedEnum::Two)
|
|
.value("Three", ScopedEnum::Three);
|
|
|
|
py::enum_<Flags>(m, "Flags", py::arithmetic())
|
|
.value("Read", Flags::Read)
|
|
.value("Write", Flags::Write)
|
|
.value("Execute", Flags::Execute)
|
|
.export_values();
|
|
|
|
py::class_<ClassWithUnscopedEnum> exenum_class(m, "ClassWithUnscopedEnum");
|
|
exenum_class.def_static("test_function", &ClassWithUnscopedEnum::test_function);
|
|
py::enum_<ClassWithUnscopedEnum::EMode>(exenum_class, "EMode")
|
|
.value("EFirstMode", ClassWithUnscopedEnum::EFirstMode)
|
|
.value("ESecondMode", ClassWithUnscopedEnum::ESecondMode)
|
|
.export_values();
|
|
});
|