Overte C++ Documentation
recording/src/recording/Forward.h
1 //
2 // Created by Bradley Austin Davis 2015/11/04
3 // Copyright 2015 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 
9 #pragma once
10 #ifndef hifi_Recording_Forward_h
11 #define hifi_Recording_Forward_h
12 
13 #include <memory>
14 #include <list>
15 #include <limits>
16 
17 namespace recording {
18 
19 using FrameType = uint16_t;
20 
21 using FrameSize = uint16_t;
22 
23 struct Frame;
24 
25 using FramePointer = std::shared_ptr<Frame>;
26 
27 using FrameConstPointer = std::shared_ptr<const Frame>;
28 
29 // A recording of some set of state from the application, usually avatar
30 // data + audio for a single person
31 class Clip;
32 
33 using ClipPointer = std::shared_ptr<Clip>;
34 
35 using ClipConstPointer = std::shared_ptr<const Clip>;
36 
37 // An interface for playing back clips
38 class Deck;
39 
40 // An interface for recording a single clip
41 class Recorder;
42 
43 }
44 
45 #endif