mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 20:07:19 -06:00
21 lines
349 B
C++
Executable File
21 lines
349 B
C++
Executable File
// FileCreationUtils.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __FILECREATIONUTILS_H
|
|
#define __FILECREATIONUTILS_H
|
|
|
|
#include "Common/String.h"
|
|
|
|
class CFileVectorBundle
|
|
{
|
|
UStringVector m_FileNames;
|
|
public:
|
|
~CFileVectorBundle() { Clear(); }
|
|
bool Add(const UString &filePath, bool tryToOpen = true);
|
|
void DisableDeleting(int index);
|
|
void Clear();
|
|
};
|
|
|
|
#endif
|