electron/atom/common/asar/asar_util.h
2015-02-12 17:23:49 +08:00

23 lines
491 B
C++

// Copyright (c) 2015 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_COMMON_ASAR_ASAR_UTIL_H_
#define ATOM_COMMON_ASAR_ASAR_UTIL_H_
#include <memory>
namespace base {
class FilePath;
}
namespace asar {
class Archive;
// Gets or creates a new Archive from the path.
std::shared_ptr<Archive> GetOrCreateAsarArchive(const base::FilePath& path);
} // namespace asar
#endif // ATOM_COMMON_ASAR_ASAR_UTIL_H_