Yurttas/PL/OOL/Cplusplus/F/04/01/01/02/S.cpp

From ZCubes Wiki
Jump to navigation Jump to search
 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   S.cpp
14*/
15
16
17#include "S.h"
18
19S::
20S(const int i) : R(i),
21                 i4(i) {
22}
23
24int
25S::
26get_i4() const {
27  return i4;
28}
29
30void
31S::
32set_i4(const int i) {
33  i4=i;
34}
35
36ostream&
37operator<<(ostream& os,
38           const S& s) {
39  os << s.i4;
40  os << endl;
41
42  return os;
43}