acme
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Pages Concepts
archive.h
1//
2// Created by camilo on 2024-05-26 21:30 <3ThomasBorregaardSorensen!!
3//
4#pragma once
5
6
7#include "acme/platform/department.h"
8
9
10namespace nano
11{
12
13
14 namespace archive
15 {
16
17
18 class CLASS_DECL_ACME archive :
19 virtual public ::acme::department
20 {
21 public:
22
23
24 inline static const char * represented_component_name()
25 {
26
27 return "nano_archive";
28
29 }
30
31
32 archive();
33 ~archive() override;
34
35
36 virtual void untar(const ::file::path & pathFolder, const ::payload & payloadTar, int iStripComponent, ::function<void(const::scoped_string& scopedstr) > functionCallback);
37
38
39 };
40
41
42 } // namespace archive
43
44
45} // namespace nano
46
Definition department.h:13
Definition function.h:329