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: 9fd340cbc367dad1e49df023f6ee95fad3397cfd (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/MyString.h"

struct CProperty
{
  UString Name;
  UString Value;
};

#endif