Import Geant4 11.0.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2021-06-25 16:12:29 +02:00
parent c968e26a39
commit 6399a014b6
4200 changed files with 207479 additions and 237366 deletions
@@ -0,0 +1,27 @@
// Copyright (C) 2010, Guy Barrand. All rights reserved.
// See the file tools.license for terms.
#ifndef tools_sg_device_interactor
#define tools_sg_device_interactor
#include "event"
namespace tools {
namespace sg {
class device_interactor {
public:
virtual ~device_interactor(){}
public:
virtual void key_press (const key_down_event&) = 0;
virtual void key_release (const key_up_event&) = 0;
virtual void mouse_press (const mouse_down_event&) = 0;
virtual void mouse_release (const mouse_up_event&) = 0;
virtual void mouse_move (const mouse_move_event&) = 0;
//virtual void mouse_double_click (const mouse_double_click_event&) = 0;
virtual void wheel_rotate (const wheel_rotate_event&) = 0;
};
}}
#endif