1/*
2 Copyright(C) 1998
3 All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
4
5 Permission to use, copy, modify, and distribute this
6 software and its documentation for EDUCATIONAL purposes
7 and without fee is hereby granted provided that this
8 copyright notice appears in all copies.
9
10 date : January 1, 1998.
11 authorĀ : Salih Yurttas.
12
13 A.h
14*/
15
16
17#include <iostream>
18
19using namespace std;
20
21class A {
22public:
23 A();
24
25 A(const A&);
26
27 A& operator=(const A&);
28
29 int get_i0() const;
30
31 double get_d0() const;
32
33 friend ostream& operator<<(ostream&,
34 const A&);
35
36private:
37 int i0,
38 i1,
39 i2,
40 i3;
41
42 double d0,
43 d1,
44 d2;
45
46 void init();
47};