<?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[bitset und Indy]]></title><description><![CDATA[<p>Hallo,</p>
<p>wie kann ich ein bitset z.B.</p>
<pre><code class="language-cpp">bitset&lt;3000&gt; bitset_Berechtigung;
</code></pre>
<p>zwischen Indy-Client und Indy-Server übertragen?</p>
<p>Die Methoden WriteLn/ ReadLn bzw. ReadBuffer/ WriteBuffer scheinen mit bitset nicht zu funktionieren.</p>
<p>Gruß<br />
Leo</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/85398/bitset-und-indy</link><generator>RSS for Node</generator><lastBuildDate>Fri, 03 Jul 2026 04:29:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/85398.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Sep 2004 13:23:11 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to bitset und Indy on Wed, 08 Sep 2004 13:23:11 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>wie kann ich ein bitset z.B.</p>
<pre><code class="language-cpp">bitset&lt;3000&gt; bitset_Berechtigung;
</code></pre>
<p>zwischen Indy-Client und Indy-Server übertragen?</p>
<p>Die Methoden WriteLn/ ReadLn bzw. ReadBuffer/ WriteBuffer scheinen mit bitset nicht zu funktionieren.</p>
<p>Gruß<br />
Leo</p>
]]></description><link>https://www.c-plusplus.net/forum/post/602499</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/602499</guid><dc:creator><![CDATA[Leo Freitag]]></dc:creator><pubDate>Wed, 08 Sep 2004 13:23:11 GMT</pubDate></item><item><title><![CDATA[Reply to bitset und Indy on Sun, 12 Sep 2004 07:59:11 GMT]]></title><description><![CDATA[<p>Leo Freitag,</p>
<p>Leo Freitag schrieb:</p>
<blockquote>
<p>Die Methoden WriteLn/ ReadLn bzw. ReadBuffer/ WriteBuffer scheinen mit bitset nicht zu funktionieren.</p>
</blockquote>
<p>dann mußt Du sie halt in ein kompatibles Format umwandeln. Z.B. bietet das Template die Methode &quot;to_string();&quot; an. Weiterhin gibt es noch Nicht-Element-Funktionen, die Dich vielleicht weiterbringen könnten:</p>
<pre><code class="language-cpp">template &lt;size_t N&gt;
istream&amp; operator&gt;&gt; (istream&amp;, bitset&lt;N&gt;&amp;);
template &lt;size_t N&gt;
ostream&amp; operator&lt;&lt; (ostream&amp;, const bitset&lt;N&gt;&amp;)
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/604947</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/604947</guid><dc:creator><![CDATA[dschensky]]></dc:creator><pubDate>Sun, 12 Sep 2004 07:59:11 GMT</pubDate></item></channel></rss>