mirror of
https://github.com/overte-org/overte.git
synced 2025-06-21 09:20:15 +02:00
21 lines
391 B
C++
Executable file
21 lines
391 B
C++
Executable file
//
|
|
// MacHelper.h
|
|
// interface/src
|
|
//
|
|
// Created by Howard Stearns
|
|
// Copyright 2019 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "DependencyManager.h"
|
|
|
|
class MacHelper : public Dependency {
|
|
public:
|
|
MacHelper();
|
|
~MacHelper();
|
|
};
|
|
|