@@ -136,21 +136,21 @@ int main()
136136- Check, `CxxReflectionTests/src` for test cases.
137137
138138## Reflection Features,
139- -[x] Register and invoke functions, supporting all overloads.
140- -[x] Register classes/structs and reflect their methods, constructors, and destructors.
141- [x] Invoke the default constructor.
142- [x] Invoke the copy constructor with a non-const reference argument.
143- [x] Invoke the copy constructor with a const reference argument.
144- [x] Invoke any overloaded constructor.
145- [x] Invoke non-const member functions.
146- [x] Invoke const member functions.
147- [x] Invoke static member functions.
148- [x] Automatically invoke destructors for objects created on the heap.
149- [ ] Reflect properties of classes/structs, providing getter/setter methods.
150- [ ] Invoke functions with perfect forwarding.
151- [ ] Reflect enums.
152- [ ] Reflect classes with composite types that are also reflected.
153- [ ] Support single, multiple, multilevel, and virtual inheritance.
139+ - [x] Register and invoke functions, supporting all overloads.
140+ - [x] Register classes/structs and reflect their methods, constructors, and destructors.
141+ - [x] Invoke the default constructor.
142+ - [x] Invoke the copy constructor with a non-const reference argument.
143+ - [x] Invoke the copy constructor with a const reference argument.
144+ - [x] Invoke any overloaded constructor.
145+ - [x] Invoke non-const member functions.
146+ - [x] Invoke const member functions.
147+ - [x] Invoke static member functions.
148+ - [x] Automatically invoke destructors for objects created on the heap.
149+ - [ ] Reflect properties of classes/structs, providing getter/setter methods.
150+ - [ ] Invoke functions with perfect forwarding.
151+ - [ ] Reflect enums.
152+ - [ ] Reflect classes with composite types that are also reflected.
153+ - [ ] Support single, multiple, multilevel, and virtual inheritance.
154154
155155## License
156156This project is licensed under the MIT License. See the LICENSE file for more details.
0 commit comments