/** \file declaration of class Pair double-ComplexLgAmpPhase */ #ifndef _utl_Pair_Complex_h_ #define _utl_Pair_Complex_h_ #include static const char CVSId_utl_PairComplexLgAmpPhase[] = "$Id$"; namespace utl { /** \class Pair PairComplexLgAmpPhase.h "utl/PairComplexLgAmpPhase.h" \brief a pair of graph points (x,y), adapted to ComplexLgAmpPhase \author Tim Huege \date 10 Jun 2009 \ingroup stl */ class PairComplexLgAmpPhase { public: PairComplexLgAmpPhase() : fX(0), fY(0) { } PairComplexLgAmpPhase(const double x, const utl::ComplexLgAmpPhase& y) : fX(x), fY(y) { } double X() const { return fX; } const ComplexLgAmpPhase& Y() const { return fY; } private: double fX; ComplexLgAmpPhase fY; }; } #endif // Configure (x)emacs for this file ... // Local Variables: // mode: c++ // compile-command: "make -C .. -k" // End: