<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.zcubes.com/index.php?action=history&amp;feed=atom&amp;title=Yurttas%2FPL%2FOOL%2FCplusplus%2FF%2F02%2F06%2F06%2FA.h</id>
	<title>Yurttas/PL/OOL/Cplusplus/F/02/06/06/A.h - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.zcubes.com/index.php?action=history&amp;feed=atom&amp;title=Yurttas%2FPL%2FOOL%2FCplusplus%2FF%2F02%2F06%2F06%2FA.h"/>
	<link rel="alternate" type="text/html" href="http://wiki.zcubes.com/index.php?title=Yurttas/PL/OOL/Cplusplus/F/02/06/06/A.h&amp;action=history"/>
	<updated>2026-05-18T16:29:24Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>http://wiki.zcubes.com/index.php?title=Yurttas/PL/OOL/Cplusplus/F/02/06/06/A.h&amp;diff=153578&amp;oldid=prev</id>
		<title>MassBot1: Created page with &quot;&lt;syntaxhighlight lang=&quot;cpp&quot; line start=&quot;1&quot; enclose=&quot;div&quot;&gt;/*     Copyright(C) 2004     All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..       Perm...&quot;</title>
		<link rel="alternate" type="text/html" href="http://wiki.zcubes.com/index.php?title=Yurttas/PL/OOL/Cplusplus/F/02/06/06/A.h&amp;diff=153578&amp;oldid=prev"/>
		<updated>2013-11-07T03:46:32Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;lt;syntaxhighlight lang=&amp;quot;cpp&amp;quot; line start=&amp;quot;1&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;/*     Copyright(C) 2004     All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..       Perm...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;syntaxhighlight lang=&amp;quot;cpp&amp;quot; line start=&amp;quot;1&amp;quot; enclose=&amp;quot;div&amp;quot;&amp;gt;/*&lt;br /&gt;
   Copyright(C) 2004&lt;br /&gt;
   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..&lt;br /&gt;
&lt;br /&gt;
   Permission to use, copy, modify, and distribute this&lt;br /&gt;
   software and its documentation for EDUCATIONAL purposes&lt;br /&gt;
   and without fee is hereby granted provided that this&lt;br /&gt;
   copyright notice appears in all copies.&lt;br /&gt;
&lt;br /&gt;
   date   : January 1, 2004.&lt;br /&gt;
   author : Salih Yurttas.&lt;br /&gt;
&lt;br /&gt;
   A.h&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ifndef A_H&lt;br /&gt;
#define A_H&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;vector&amp;gt;&lt;br /&gt;
#include &amp;lt;stdexcept&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using namespace std;&lt;br /&gt;
&lt;br /&gt;
class A {&lt;br /&gt;
public:&lt;br /&gt;
  A();&lt;br /&gt;
&lt;br /&gt;
  A(const A&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
  A&amp;amp; operator=(const A&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
  int get_first_data_a() const;&lt;br /&gt;
  int get_last_data_a() const;&lt;br /&gt;
  int get_any_data_a(const int) const;&lt;br /&gt;
&lt;br /&gt;
  int get_first_data_b() const;&lt;br /&gt;
  int get_last_data_b() const;&lt;br /&gt;
  int get_any_data_b(const int) const;&lt;br /&gt;
&lt;br /&gt;
  void set_first_data_a(const int);&lt;br /&gt;
  void set_last_data_a(const int);&lt;br /&gt;
&lt;br /&gt;
  void set_all_data_a(const int);&lt;br /&gt;
  void set_all_data_a(const vector&amp;lt;int&amp;gt;&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
  void set_any_data_a(const int,&lt;br /&gt;
                      const int);&lt;br /&gt;
&lt;br /&gt;
  void set_first_data_b(const int);&lt;br /&gt;
  void set_last_data_b(const int);&lt;br /&gt;
&lt;br /&gt;
  void set_all_data_b(const int);&lt;br /&gt;
  void set_all_data_b(const vector&amp;lt;int&amp;gt;&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
  void set_any_data_b(const int,&lt;br /&gt;
                      const int);&lt;br /&gt;
&lt;br /&gt;
  A&amp;amp; operator+=(const A&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
  friend A operator+(const A&amp;amp;,&lt;br /&gt;
                     const A&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
  friend ostream&amp;amp; operator&amp;lt;&amp;lt;(ostream&amp;amp;,&lt;br /&gt;
                             const A&amp;amp;);&lt;br /&gt;
&lt;br /&gt;
private:&lt;br /&gt;
  vector&amp;lt;int&amp;gt; data_a;&lt;br /&gt;
  vector&amp;lt;int&amp;gt; data_b;&lt;br /&gt;
};&lt;br /&gt;
#endif&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>MassBot1</name></author>
	</entry>
</feed>