remove utf8_cast functions
This commit is contained in:
@@ -100,9 +100,6 @@ namespace nana
|
||||
void throw_not_utf8(const char*, unsigned len);
|
||||
void throw_not_utf8(const char*);
|
||||
|
||||
std::wstring utf8_cast(const std::string&);
|
||||
std::string utf8_cast(const std::wstring&);
|
||||
|
||||
const std::string& to_utf8(const std::string&);
|
||||
std::string to_utf8(const std::wstring&);
|
||||
|
||||
|
||||
@@ -332,8 +332,6 @@ namespace filesystem
|
||||
//uintmax_t remove_all(const path& p);
|
||||
//uintmax_t remove_all(const path& p, error_code& ec) noexcept;
|
||||
|
||||
//bool rmdir(const path& p, bool fails_if_not_empty); //deprecated
|
||||
|
||||
template<typename CharType>
|
||||
std::basic_string<CharType> parent_path(const std::basic_string<CharType>& path)
|
||||
{
|
||||
|
||||
@@ -56,14 +56,8 @@ namespace drawerbase
|
||||
void mouse_up(graph_reference, const arg_mouse&) override;
|
||||
public:
|
||||
implement * impl() const;
|
||||
private:
|
||||
void _m_draw_background(graph_reference);
|
||||
void _m_draw_checkbox(graph_reference, unsigned first_line_height);
|
||||
void _m_draw_title(graph_reference);
|
||||
private:
|
||||
static const int interval = 4;
|
||||
widget* widget_;
|
||||
std::unique_ptr<implement> imptr_;
|
||||
implement * impl_;
|
||||
};
|
||||
}//end namespace checkbox
|
||||
|
||||
@@ -158,7 +158,7 @@ namespace nana
|
||||
iresolver& operator>>(double&);
|
||||
iresolver& operator>>(long double&);
|
||||
|
||||
iresolver& operator>>(std::string& utf8_cast);
|
||||
iresolver& operator>>(std::string& text_utf8);
|
||||
iresolver& operator>>(std::wstring&);
|
||||
iresolver& operator>>(cell&);
|
||||
iresolver& operator>>(std::nullptr_t);
|
||||
|
||||
Reference in New Issue
Block a user