HulaLoop
Simple cross-platform audio loopback and recording.
Export.h
1 #ifndef HL_EXPORT_H
2 #define HL_EXPORT_H
3 
4 #include <hlaudio/hlaudio.h>
5 #include <string>
6 
7 namespace hula
8 {
9  class Export {
10  private:
11  std::string targetFile;
12 
13  public:
14  Export(std::string targetFile);
15  void copyData(std::string inputFileDirectory);
16 
17  ~Export();
18  };
19 }
20 
21 #endif // HL_EXPORT_H
<hlaudio/hlaudio.h>
Export(std::string targetFile)
Construct a new instance of the Export class.
Definition: Export.cpp:13
~Export()
Destroys the instance of Export.
Definition: Export.cpp:50
Definition: Controller.h:11
Definition: Export.h:9
void copyData(std::string inputFileDirectory)
Copy data from the temp file to the output file.
Definition: Export.cpp:23