Adding ViroKit. Needs AWSCore :(
This commit is contained in:
32
mobile/ios/ViroKit.framework/Headers/VROSoundData.h
Normal file
32
mobile/ios/ViroKit.framework/Headers/VROSoundData.h
Normal file
@@ -0,0 +1,32 @@
|
||||
//
|
||||
// VROSoundData.h
|
||||
// ViroRenderer
|
||||
//
|
||||
// Created by Andy Chu on 1/30/17.
|
||||
// Copyright © 2017 Viro Media. All rights reserved.
|
||||
//
|
||||
|
||||
#ifndef VROSoundData_h
|
||||
#define VROSoundData_h
|
||||
|
||||
#include <string>
|
||||
#include <memory>
|
||||
#include "VROSoundDataDelegate.h"
|
||||
|
||||
class VROSoundData {
|
||||
|
||||
public:
|
||||
|
||||
virtual ~VROSoundData() {}
|
||||
|
||||
virtual std::string getLocalFilePath() = 0;
|
||||
|
||||
virtual void setDelegate(std::weak_ptr<VROSoundDataDelegate> delegate) {
|
||||
_delegate = delegate;
|
||||
}
|
||||
|
||||
protected:
|
||||
std::weak_ptr<VROSoundDataDelegate> _delegate;
|
||||
};
|
||||
|
||||
#endif /* VROSoundData_h */
|
||||
Reference in New Issue
Block a user