optimize generated binary size
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* A Bedrock Platform-Independent Implementation
|
||||
* Nana C++ Library(http://www.nanapro.org)
|
||||
* Copyright(C) 2003-2015 Jinhao(cnjinhao@hotmail.com)
|
||||
* Copyright(C) 2003-2016 Jinhao(cnjinhao@hotmail.com)
|
||||
*
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
@@ -198,12 +198,12 @@ namespace nana
|
||||
}
|
||||
}
|
||||
|
||||
widget_colors& bedrock::get_scheme_template(scheme_factory_base&& factory)
|
||||
widget_colors& bedrock::get_scheme_template(scheme_factory_interface&& factory)
|
||||
{
|
||||
return pi_data_->scheme.scheme_template(std::move(factory));
|
||||
}
|
||||
|
||||
widget_colors* bedrock::make_scheme(scheme_factory_base&& factory)
|
||||
widget_colors* bedrock::make_scheme(scheme_factory_interface&& factory)
|
||||
{
|
||||
return pi_data_->scheme.create(std::move(factory));
|
||||
}
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
/*
|
||||
* Color Schemes
|
||||
* Nana C++ Library(http://www.nanapro.org)
|
||||
* Copyright(C) 2003-2016 Jinhao(cnjinhao@hotmail.com)
|
||||
*
|
||||
* Distributed under the Boost Software License, Version 1.0.
|
||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||
* http://www.boost.org/LICENSE_1_0.txt)
|
||||
*
|
||||
* @file: nana/gui/color_schemes.cpp
|
||||
*/
|
||||
|
||||
#include <nana/gui/detail/color_schemes.hpp>
|
||||
#include <map>
|
||||
|
||||
@@ -57,7 +69,7 @@ namespace nana
|
||||
//class color_schemes
|
||||
struct color_schemes::implement
|
||||
{
|
||||
std::map<scheme_factory_base::factory_identifier*, std::unique_ptr<scheme>> scheme_template;
|
||||
std::map<scheme_factory_interface::factory_identifier*, std::unique_ptr<scheme>> scheme_template;
|
||||
};
|
||||
|
||||
color_schemes::color_schemes()
|
||||
@@ -70,7 +82,7 @@ namespace nana
|
||||
delete impl_;
|
||||
}
|
||||
|
||||
auto color_schemes::scheme_template(scheme_factory_base&& factory) -> scheme&
|
||||
auto color_schemes::scheme_template(scheme_factory_interface&& factory) -> scheme&
|
||||
{
|
||||
auto & tmpl_scheme = impl_->scheme_template[factory.get_id()];
|
||||
|
||||
@@ -81,7 +93,7 @@ namespace nana
|
||||
return *tmpl_scheme.get();
|
||||
}
|
||||
|
||||
widget_colors* color_schemes::create(scheme_factory_base&& factory)
|
||||
widget_colors* color_schemes::create(scheme_factory_interface&& factory)
|
||||
{
|
||||
return factory.create(scheme_template(std::move(factory)));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user