Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / examples / Advanced / ch_3 / CHANGES
blob3ac18b3e7a065c0ddfa6c553e7d6188dda8767c6
1 Changelog for chapter 3 example in "Advanced CORBA Programming
2 with C++" by Michi Henning and Steve Vinoski, Copyright 1999,
3 Addison-Wesley, Reading, MA.  The following changes have been made
4 to the book's source code to make the example work with TAO and
5 with various platforms and compilers.
7 ______________________________________________________________________________
8 ESSENTIAL CHANGES:
9   1. changed filenames .cc to .cpp and .hh h, and modified #includes in
10      client.cpp server.cpp and server.h appropriately.
12   2. a) changed #include "time.h"  to  #include "timeC.h" in client.cpp
14      b) Moved standard #includes below local #includes, and commented-out
15         unnecessary #includes to avoid warnings and errors (g++)
16           -client.cpp now reads:
17               #include "timeC.h"
18               #include <iomanip.h>
19               // #include <iostream.h>
20           -server.cpp now reads:
21               #include "server.h"
22               // #include <time.h>
23               // #include <iostream.h>
25 ______________________________________________________________________________
26 ADDITIONAL CHANGES:
27   3. added .in() to _var type parameters
28        -3 times in client.cpp for calls to is_nil() and _narrow()
29        -3 times in main() in server.cpp for calls to _narrow(),
30         object_to_string, and <<