Move senseApi libs into their own outer subdir
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef X11_XCB_API_H
|
||||
#define X11_XCB_API_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <memory>
|
||||
#include <user/senseApiDesc.h>
|
||||
|
||||
class Xcb_XorgApi
|
||||
{
|
||||
public:
|
||||
Xcb_XorgApi(const std::string& _displayName)
|
||||
: displayName(_displayName)
|
||||
{}
|
||||
|
||||
~Xcb_XorgApi() = default;
|
||||
|
||||
private:
|
||||
std::string displayName;
|
||||
};
|
||||
|
||||
#endif // X11_XCB_API_H
|
||||
Reference in New Issue
Block a user