Skip to content
Snippets Groups Projects
Commit 1a3f9651 authored by Fabian Reister's avatar Fabian Reister
Browse files

using base class' c'tor

parent 78a1e1ed
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,6 @@
namespace armarx::viz
{
ScopedClient::ScopedClient(const Client& client) : Client(client) {}
Layer ScopedClient::layer(std::string const& name) const
{
layers.insert(name);
......
......@@ -32,7 +32,7 @@ namespace armarx::viz
class ScopedClient: virtual public Client
{
public:
ScopedClient(const Client& client);
using Client::Client;
Layer layer(std::string const& name) const override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment