mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-27 09:39:08 +01:00
added Resourcemanager
This commit is contained in:
@@ -42,25 +42,33 @@ namespace WebWidgets {
|
||||
|
||||
|
||||
Page::Page():
|
||||
ContainerView(typeid(Page))
|
||||
ContainerView(typeid(Page)),
|
||||
_text(),
|
||||
_rm()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Page::Page(const std::string& name):
|
||||
ContainerView(name, typeid(Page))
|
||||
ContainerView(name, typeid(Page)),
|
||||
_text(),
|
||||
_rm()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Page::Page(const std::string& name, const std::type_info& type):
|
||||
ContainerView(name, type)
|
||||
ContainerView(name, type),
|
||||
_text(),
|
||||
_rm()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Page::Page(const std::type_info& type):
|
||||
ContainerView(type)
|
||||
ContainerView(type),
|
||||
_text(),
|
||||
_rm()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user