fk0, легенда (11.06.2013 20:22, просмотров: 90) ответил =AlexD= на в борланде есть расширение для С++ эмулирующее дельфийные проперти, стандарту С++ не соответствует никак.
Да уж, C++ с паскалем не сравнить, тонны говнокода на пустом месте. В тикле такая же байда (configure, cget).
class object {
int x;
public:
class prop {
object *my;
public:
int operator=(int x) { return my->x=x; }
int operator()() { return my->x; }
int operator++(int y) { return ++my->x; }
int operator--(int y) { return --my->x; }
int operator+=(int y) { return my->x+=y; }
int operator-=(int y) { return my->x-=y; }
prop(object *const p) : my(p) {}
} p;
object() : p(this) {}
};
[ZX]