#ifndef CONVERT_ALT_TO_TIME_8_23_2007 #define CONVERT_ALT_TO_TIME_8_23_2007 /** @class ConvertAlt2Time.h @author Brian Magill @creation date 8/23/2007 $Date:$ $Revision:$ @copyright (©) Copyright 2006 by GATS Inc. 11864 Canon Blvd., Suite 101, Newport News, VA 23606 All Rights Reserved. No part of this software or publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise without the prior written permission of GATS Inc. @brief Finds the time corresponding to a given altitude */ #include #include "SigEarthLocParam.h" class ConvertAlt2Time { private: SigEarthLocParam param; public: ConvertAlt2Time(): param() { } ConvertAlt2Time(SigEarthLocParam const &p): param(p) { } ConvertAlt2Time(ConvertAlt2Time const &rhs): param(rhs.param) { } ConvertAlt2Time const & operator = (const ConvertAlt2Time &rhs) { if (this == &rhs) return *this; param = rhs.param; return *this; } ~ConvertAlt2Time() { }; double operator()(double alt) const; }; #endif