Go to the documentation of this file.00001 #pragma once
00002
00003 namespace AppSecInc {
00004 namespace Msi {
00005
00007 class MsiPackage : public MsiHandle
00008 {
00009 private:
00010 std::wstring _filepath;
00011 public:
00012 MsiPackage();
00013 MsiPackage(const std::wstring& filepath);
00014 void Open(const std::wstring& filepath);
00015 void Close();
00016 };
00017
00018 }}