interface.
</para>
<synopsis>
- #include <yaz++/socket-observer.h>
+ #include <yazpp/socket-observer.h>
class my_socketobservable : public IYazSocketObservable {
// Add an observer interested in socket fd
interface.
</para>
<synopsis>
- #include <yaz++/socket-observer.h>
+ #include <yazpp/socket-observer.h>
class my_socketobserver : public IYazSocketObserver {
public:
is notified.
</para>
<synopsis>
- #include <yaz++/pdu-observer.h>
+ #include <yazpp/pdu-observer.h>
class my_pduobservable : public IYaz_PDU_Observable {
public:
<link linkend="IYaz_PDU_Observable">IYaz_PDU_Observable</link>.
</para>
<synopsis>
- #include <yaz++/pdu-observer.h>
+ #include <yazpp/pdu-observer.h>
class my_pduobserver : public IYaz_PDU_Observer {
public:
Abstract query.
</para>
<synopsis>
- #include <yaz++/query.h>
+ #include <yazpp/query.h>
class my_query : public Yaz_Query {
public:
// Print query in buffer described by str and len
command line clients, etc.
</para>
<synopsis>
- #include <yaz++/socket-manager.h>
+ #include <yazpp/socket-manager.h>
class Yaz_SocketManager : public IYazSocketObservable {
public:
that transmits BER encoded PDUs (or those offered by YAZ COMSTACK).
</para>
<synopsis>
- #include <yaz++/pdu-assoc.h>
+ #include <yazpp/pdu-assoc.h>
class Yaz_PDU_Assoc : public IYaz_PDU_Observable,
IYazSocketObserver {
Z-Association.
</para>
<synopsis>
- #include <yaz++/z-assoc.h>
+ #include <yazpp/z-assoc.h>
class Yaz_Z_Assoc : public IYaz_PDU_Observer {
public:
more facilities for the Z39.50 client role.
</para>
<synopsis>
- #include <yaz++/ir-assoc.h>
+ #include <yazpp/ir-assoc.h>
class Yaz_IR_Assoc : public Yaz_Z_Assoc {
...
more facilities for the Z39.50 server role.
</para>
<synopsis>
- #include <yaz++/z-server.h>
+ #include <yazpp/z-server.h>
class Yaz_Z_Server : public Yaz_Z_Server {
...
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
- sgml-parent-document: "yaz++.xml"
+ sgml-parent-document: "yazpp.xml"
sgml-local-catalogs: nil
sgml-namecase-general:t
End:
<chapter id="installation">
- <!-- $Id: installation.xml,v 1.14 2004-09-11 20:54:02 adam Exp $ -->
+ <!-- $Id: installation.xml,v 1.15 2006-03-29 13:19:41 adam Exp $ -->
<title>Installation</title>
<para>
You need a C++ compiler to compile and use YAZ++.
This is what you have after successful compilation:
<variablelist>
<varlistentry>
- <term><literal>src/libyazcpp.la</literal></term>
+ <term><literal>src/libyazpp.la</literal></term>
<listitem><para>
The YAZ++ library.
This library gets installed in your libraries directory
</varlistentry>
<varlistentry>
- <term><literal>src/libzoomcpp.la</literal></term>
+ <term><literal>src/libzoompp.la</literal></term>
<listitem><para>
The <link linkend="zoom">ZOOM-C++</link> library.
This library gets installed in your libraries directory
</varlistentry>
<varlistentry>
- <term><literal>include/yaz++/*.h</literal></term>
+ <term><literal>include/yazpp/*.h</literal></term>
<listitem><para>
Various C++ header files, which you'll need for YAZ++
development. All these are installed in your header files area
- (<parameter>prefix</parameter><literal>/include/yaz++</literal>).
+ (<parameter>prefix</parameter><literal>/include/yazpp</literal>).
</para></listitem>
</varlistentry>
<varlistentry>
- <term><literal>yaz++-config</literal></term>
+ <term><literal>yazpp-config</literal></term>
<listitem><para>
A Bourne shell-script utility that returns the values of the
<envar>CFLAGS</envar> and <envar>LIBS</envar>
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
- sgml-parent-document: "yaz++.xml"
+ sgml-parent-document: "yazpp.xml"
sgml-local-catalogs: nil
sgml-namecase-general:t
End:
-<!-- $Id: introduction.xml,v 1.4 2004-05-04 04:09:30 adam Exp $ -->
+<!-- $Id: introduction.xml,v 1.5 2006-03-29 13:19:41 adam Exp $ -->
<chapter id="introduction"><title>Introduction</title>
<para>
<ulink url="http://www.indexdata.dk/yazplusplus/">YAZ++</ulink>
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
- sgml-parent-document:"yaz++.xml"
+ sgml-parent-document:"yazpp.xml"
sgml-local-catalogs: nil
sgml-namecase-general:t
End:
-<!-- $Id: license.xml,v 1.5 2004-04-11 12:13:32 adam Exp $ -->
+<!-- $Id: license.xml,v 1.6 2006-03-29 13:19:41 adam Exp $ -->
<appendix id="license"><title>License</title>
<section id="yaz.license"><title>YAZ License</title>
<para>
- Copyright © 1999-2004 Index Data Aps and Mike Taylor.
+ Copyright © 1999-2006 Index Data Aps and Mike Taylor.
</para>
<para>
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
- sgml-parent-document: "yaz++.xml"
+ sgml-parent-document: "yazpp.xml"
sgml-local-catalogs: nil
sgml-namecase-general:t
End:
<chapter id="zoom">
- <!-- $Id: zoom.xml,v 1.12 2004-04-11 11:16:39 adam Exp $ -->
+ <!-- $Id: zoom.xml,v 1.13 2006-03-29 13:19:41 adam Exp $ -->
<title>ZOOM-C++</title>
</para>
<programlisting>
#include <iostream>
- #include <yaz++/zoom.h>
+ #include <yazpp/zoom.h>
using namespace ZOOM;
to catch exceptions and report any errors:
</para>
<programlisting>
- /* g++ -o zoom-c++-hw zoom-c++-hw.cpp -lyaz++ -lyaz */
+ /* g++ -o zoom-c++-hw zoom-c++-hw.cpp -lzoompp -lyaz */
#include <iostream>
- #include <yaz++/zoom.h>
+ #include <yazpp/zoom.h>
using namespace ZOOM;
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
- sgml-parent-document: "yaz++.xml"
+ sgml-parent-document: "yazpp.xml"
sgml-local-catalogs: nil
sgml-namecase-general:t
End: