Files
test2/intern/ghost/intern/GHOST_NDOFManagerUnix.hh
Campbell Barton 530ee6e7fa Cleanup: make class doc-strings directly above classes
In some cases it wasn't clear if a comment before a class was meant
to be it's doc-string. Remove blank lines between the class & it's
doc-string.
2023-07-25 14:11:42 +10:00

23 lines
491 B
C++

/* SPDX-FileCopyrightText: 2002-2023 Blender Foundation
*
* SPDX-License-Identifier: GPL-2.0-or-later */
#pragma once
#include "GHOST_NDOFManager.hh"
/**
* Event capture is handled within the NDOF manager on Linux,
* so there's no need for SystemX11 to look for them.
*/
class GHOST_NDOFManagerUnix : public GHOST_NDOFManager {
public:
GHOST_NDOFManagerUnix(GHOST_System &);
~GHOST_NDOFManagerUnix();
bool available();
bool processEvents();
private:
bool available_;
};