// =================================================================
//
// Copyright (C) 2003 Alex Vinokur
//
// For conditions of distribution and use, see
// copyright notice in common.h
//
// =================================================================
// #################################################################
//
// SOFTWARE : C++ Stream-Compatible TCP/IP Sockets Demo Application
// FILE : common.cpp
//
// DESCRIPTION :
// Common variables
//
// #################################################################
// ================
#include "common.h"
// ================
const char product_name[] = "C++ Stream-Compatible TCP/IP Sockets";
const char demo_app_name[] = "Demo Application";
const char ms_author_name[] = "Maciej Sobczak";
const char ms_author_url[] = "http://www.maciejsobczak.com";
const char av_author_name[] = "Alex Vinokur";
const char av_author_url[] = "http://mathforum.org/library/view/10978.html";
const char sw_version[] = "Version 1.1-Beta";
// ----------------
ostringstream sout;
ostringstream mout;
ostringstream tout;