From a73fc4b44bb717a027b9617a1532dbd661df38f6 Mon Sep 17 00:00:00 2001
From: Frank Winklmeier <frank.winklmeier@cern.ch>
Date: Fri, 19 Nov 2021 13:27:18 +0100
Subject: [PATCH] Add private tool to SvcWithTool example

---
 GaudiExamples/src/AlgTools/MyServiceWithTool.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp b/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp
index 0481ae3e0..81709d13a 100644
--- a/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp
+++ b/GaudiExamples/src/AlgTools/MyServiceWithTool.cpp
@@ -1,5 +1,5 @@
 /***********************************************************************************\
-* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
+* (c) Copyright 1998-2021 CERN for the benefit of the LHCb and ATLAS collaborations *
 *                                                                                   *
 * This software is distributed under the terms of the Apache version 2 licence,     *
 * copied verbatim in the file "LICENSE".                                            *
@@ -22,6 +22,7 @@ namespace GaudiTesting {
 
   private:
     PublicToolHandle<IMyTool> m_tool{this, "MyTool", "MyTool"};
+    ToolHandle<IMyTool> m_privTool{this, "MyPrivateTool", ""};
   };
 
   DECLARE_COMPONENT( SvcWithTool )
-- 
GitLab