13 lines
275 B
C++
13 lines
275 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include "propertyGrid.h"
|
|
class Property
|
|
{
|
|
public:
|
|
void(*callbackFuncOnChange)(PROPGRIDITEM);
|
|
PROPGRIDITEM * item;
|
|
Property(PROPGRIDITEM * item, void(*onPropUpdate)(PROPGRIDITEM));
|
|
~Property(void);
|
|
void updateProperty(PROPGRIDITEM);
|
|
};
|