12 lines
181 B
C++
12 lines
181 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include "propertyGrid.h"
|
|
class Property
|
|
{
|
|
public:
|
|
PROPGRIDITEM item;
|
|
DWORD addr;
|
|
Property(PROPGRIDITEM item, DWORD addr);
|
|
~Property(void);
|
|
};
|