<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[with Anweisung vermisst]]></title><description><![CDATA[<p>hi,</p>
<p>ich vermiss einwenig die with Anweisung aus Delphi, die einem die Zuweisung auf Objekt-Attribute erleichtert:</p>
<pre><code class="language-cpp">with Object.Subobject
    Top = 0;
    Left = 0;
    Height = 10;
    Width = 10;
    Color = white;
etc..
</code></pre>
<p>Sowas gibts in C++ nicht oder?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/156612/with-anweisung-vermisst</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 21:27:00 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/156612.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 18 Aug 2006 09:14:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to with Anweisung vermisst on Fri, 18 Aug 2006 09:14:04 GMT]]></title><description><![CDATA[<p>hi,</p>
<p>ich vermiss einwenig die with Anweisung aus Delphi, die einem die Zuweisung auf Objekt-Attribute erleichtert:</p>
<pre><code class="language-cpp">with Object.Subobject
    Top = 0;
    Left = 0;
    Height = 10;
    Width = 10;
    Color = white;
etc..
</code></pre>
<p>Sowas gibts in C++ nicht oder?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1119655</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1119655</guid><dc:creator><![CDATA[Pasquale]]></dc:creator><pubDate>Fri, 18 Aug 2006 09:14:04 GMT</pubDate></item><item><title><![CDATA[Reply to with Anweisung vermisst on Fri, 18 Aug 2006 09:21:29 GMT]]></title><description><![CDATA[<p>Pasquale schrieb:</p>
<blockquote>
<p>hi,<br />
ich vermiss einwenig die with Anweisung aus Delphi, die einem die Zuweisung auf Objekt-Attribute erleichtert:</p>
<pre><code class="language-cpp">with Object.Subobject
    Top = 0;
    Left = 0;
    Height = 10;
    Width = 10;
    Color = white;
etc..
</code></pre>
<p>Sowas gibts in C++ nicht oder?</p>
</blockquote>
<p>nö, aber vielleicht kannste mit folgendem leben:</p>
<pre><code class="language-cpp">{
   Type&amp; o=Object.Subobject;
   o.Top=0;
   o.Left=0;
   o.Height=0;
   o.color=0;
etc...
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1119660</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1119660</guid><dc:creator><![CDATA[volkard]]></dc:creator><pubDate>Fri, 18 Aug 2006 09:21:29 GMT</pubDate></item></channel></rss>