============================================================================
This file is part of GPSTk, the GPS Toolkit.
The GPSTk is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or any later version.
The GPSTk is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with GPSTk; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Copyright 2004, The University of Texas at Austin
============================================================================
# 28 "/home/gpstk/dev/lib/vdraw/EPSImage.cpp" 2
namespace vdraw { static char VIEWER_ENV_VAR_NAME[]="VDRAW_EPS_VIEWER";
EPSImage::EPSImage(std::ostream& stream, double illx, double illy, double iurx, double iury, ORIGIN_LOCATION iloc): PSImageBase(stream, iurx-illx, iury-illy, iloc), viewerManager(VIEWER_ENV_VAR_NAME), llx(illx), lly(illy), urx(iurx), ury(iury) { outputHeader(); }
EPSImage::EPSImage(const char* fname, double illx, double illy, double iurx, double iury, ORIGIN_LOCATION iloc): PSImageBase(fname, iurx-illx, iury-illy, iloc), viewerManager(VIEWER_ENV_VAR_NAME), llx(illx), lly(illy), urx(iurx), ury(iury) { outputHeader(); }
EPSImage::~EPSImage(void) { No operations. Not yet. }
/** Methods
Definition in file EPSImage.cpp.
#include <iostream>
#include "EPSImage.hpp"
Include dependency graph for EPSImage.cpp:

Go to the source code of this file.
1.3.9.1