mirror of
https://github.com/overte-org/overte.git
synced 2025-06-26 00:50:15 +02:00
Note that the actual Leap SDK can't be in the repo for IP reasons, so there's a stub-version of the header. When the actual SDK is put into the Leap folder, cake will find it automatically and switch over.
13 lines
311 B
C++
Executable file
13 lines
311 B
C++
Executable file
|
|
// This is an empty stub, used as a placeholder for the real Leap.h
|
|
// The entire containing Leap folder should be replaced by the one
|
|
// from the Leap SDK.
|
|
|
|
#define LEAP_STUBS // We're using the stubbed-out Leap header
|
|
|
|
namespace Leap {
|
|
class Frame {};
|
|
class Controller {};
|
|
class Listener {};
|
|
}
|
|
|