PageCompiler: merged changes from internal and macchina versions

This commit is contained in:
Guenter Obiltschnig
2016-02-29 16:40:19 +01:00
parent f6cc0f7e8a
commit 8f3616c55c
3 changed files with 7 additions and 2 deletions

View File

@@ -54,6 +54,11 @@ void OSPCodeWriter::writeHandlerMembers(std::ostream& ostr)
ostr << "\t\treturn _pContext;\n";
ostr << "\t}\n";
ostr << "\n";
ostr << "\tPoco::OSP::BundleContext::Ptr c() const\n";
ostr << "\t{\n";
ostr << "\t\treturn _pContext;\n";
ostr << "\t}\n";
ostr << "\n";
ostr << "private:\n";
ostr << "\tPoco::OSP::BundleContext::Ptr _pContext;\n";
}