overte/interface/src/devices/Visage.h
2014-02-11 16:44:25 -08:00

28 lines
489 B
C++

//
// Visage.h
// interface
//
// Created by Andrzej Kapolka on 2/11/14.
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
//
#ifndef __interface__Visage__
#define __interface__Visage__
namespace VisageSDK {
class VisageTracker2;
}
/// Handles input from the Visage webcam feature tracking software.
class Visage {
public:
Visage();
~Visage();
private:
VisageSDK::VisageTracker2* _tracker;
};
#endif /* defined(__interface__Visage__) */