Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:10:38

0001 // @(#)root/eve7:$Id$
0002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007, 2018
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2019, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT7_REveClient
0013 #define ROOT7_REveClient
0014 
0015 #include <memory>
0016 
0017 namespace ROOT {
0018 
0019 class RWebWindow;
0020 
0021 namespace Experimental {
0022 
0023 class REveScene;
0024 
0025 class REveClient {
0026 
0027    friend class REveScene;
0028 
0029    unsigned fId{0};
0030    std::shared_ptr<ROOT::RWebWindow> fWebWindow;
0031 
0032 public:
0033    REveClient() = default;
0034    REveClient(unsigned int cId, std::shared_ptr<ROOT::RWebWindow> &win) : fId(cId), fWebWindow(win) {}
0035 };
0036 
0037 } // namespace Experimental
0038 } // namespace ROOT
0039 
0040 #endif