Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Property.h « Common « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57e7b45260b7c59663c4738ed8dc29db5547193b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Property.h

#ifndef __PROPERTY_H
#define __PROPERTY_H

#include "Common/String.h"

struct CProperty
{
  UString Name;
  UString Value;
};

#endif