Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GHOST_NDOFManagerCocoa.h « intern « ghost « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a40406ad2d08ce8401e442bf930d157275b97104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

#include "GHOST_NDOFManager.h"

// Event capture is handled within the NDOF manager on Macintosh,
// so there's no need for SystemCocoa to look for them.

class GHOST_NDOFManagerCocoa : public GHOST_NDOFManager {
 public:
  GHOST_NDOFManagerCocoa(GHOST_System &);
  ~GHOST_NDOFManagerCocoa();

  bool available();
};