MatN work for versatile appimage creation for all types of os
[goodguy/cinelerra.git] / cinelerra-5.1 / tools / makeappimagetool / includes / copyright_dpkgquery.h
1 // local includes
2 #include "copyright.h"
3
4 #pragma once
5
6 namespace bf = boost::filesystem;
7
8 namespace linuxdeploy {
9     namespace core {
10         namespace copyright {
11             class DpkgQueryCopyrightFilesManager : public ICopyrightFilesManager {
12                 private:
13                     class PrivateData;
14
15                 public:
16                     std::vector<bf::path> getCopyrightFilesForPath(const bf::path& path) override;
17             };
18         }
19     }
20 }