SRombauts / SQLiteCpp

SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.
http://srombauts.github.io/SQLiteCpp
MIT License
2.22k stars 510 forks source link

Private members to Protected to enable inheritance #455

Open YapuWU opened 1 year ago

YapuWU commented 1 year ago

I am thinking if you could change private member functions and variables in Statment, Database and Column class from private to protected. If you change this, the user will be able to implement new features without changing the original library. For example, I could add wchar_t or utf16 support by inherting your classes.

Thank you.