Fix README

This commit is contained in:
Rapptz 2013-11-25 05:01:02 -05:00
parent f775790c2d
commit 7bcb7cff92

View File

@ -57,8 +57,8 @@ Sol makes use of C++11 features. The features used are as follows:
- rvalue references - rvalue references
- move semantics - move semantics
- variadic templates - variadic templates
- <tuple> - `<tuple>`
- <type_traits> - `<type_traits>`
- std::unique_ptr - std::unique_ptr
- enum classes - enum classes
- auto - auto
@ -67,3 +67,9 @@ Sol makes use of C++11 features. The features used are as follows:
GCC 4.7 and Clang 3.3 or higher should be able to compile without problems. Visual Studio 2013 with the November CTP should GCC 4.7 and Clang 3.3 or higher should be able to compile without problems. Visual Studio 2013 with the November CTP should
be able to support this as well. be able to support this as well.
## TODO
- Support for functions
- Support for `operator[]` based retrieval and modifying of tables.
- Support for retrieval of tables through dot notation. e.g. `tab.retrieve<int>("resolution.width");`