Blame Float32.h

Packit a4aae4
Packit a4aae4
// -*- mode: c++; c-basic-offset:4 -*-
Packit a4aae4
Packit a4aae4
// This file is part of libdap, A C++ implementation of the OPeNDAP Data
Packit a4aae4
// Access Protocol.
Packit a4aae4
Packit a4aae4
// Copyright (c) 2002,2003 OPeNDAP, Inc.
Packit a4aae4
// Author: James Gallagher <jgallagher@opendap.org>
Packit a4aae4
//
Packit a4aae4
// This library is free software; you can redistribute it and/or
Packit a4aae4
// modify it under the terms of the GNU Lesser General Public
Packit a4aae4
// License as published by the Free Software Foundation; either
Packit a4aae4
// version 2.1 of the License, or (at your option) any later version.
Packit a4aae4
//
Packit a4aae4
// This library is distributed in the hope that it will be useful,
Packit a4aae4
// but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a4aae4
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a4aae4
// Lesser General Public License for more details.
Packit a4aae4
//
Packit a4aae4
// You should have received a copy of the GNU Lesser General Public
Packit a4aae4
// License along with this library; if not, write to the Free Software
Packit a4aae4
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
Packit a4aae4
//
Packit a4aae4
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
Packit a4aae4
Packit a4aae4
// (c) COPYRIGHT URI/MIT 1999
Packit a4aae4
// Please read the full copyright statement in the file COPYRIGHT_URI.
Packit a4aae4
//
Packit a4aae4
// Authors:
Packit a4aae4
//      jhrg,jimg       James Gallagher <jgallagher@gso.uri.edu>
Packit a4aae4
Packit a4aae4
// Interface for Float32 type.
Packit a4aae4
//
Packit a4aae4
// 3/22/99 jhrg
Packit a4aae4
Packit a4aae4
#ifndef _float32_h
Packit a4aae4
#define _float32_h 1
Packit a4aae4
Packit a4aae4
Packit a4aae4
#ifndef _dods_datatypes_h
Packit a4aae4
#include "dods-datatypes.h"
Packit a4aae4
#endif
Packit a4aae4
Packit a4aae4
#ifndef _basetype_h
Packit a4aae4
#include "BaseType.h"
Packit a4aae4
#endif
Packit a4aae4
Packit a4aae4
#ifndef constraint_evaluator_h
Packit a4aae4
#include "ConstraintEvaluator.h"
Packit a4aae4
#endif
Packit a4aae4
Packit a4aae4
namespace libdap
Packit a4aae4
{
Packit a4aae4
Packit a4aae4
class DMR;
Packit a4aae4
Packit a4aae4
/** @brief Holds a 32-bit floating point value.
Packit a4aae4
Packit a4aae4
    @see BaseType
Packit a4aae4
    */
Packit a4aae4
class Float32: public BaseType
Packit a4aae4
{
Packit a4aae4
protected:
Packit a4aae4
    dods_float32 d_buf;
Packit a4aae4
Packit a4aae4
public:
Packit a4aae4
    Float32(const string &n);
Packit a4aae4
    Float32(const string &n, const string &d);
Packit a4aae4
Packit a4aae4
    Float32(const Float32 &copy_from);
Packit a4aae4
Packit a4aae4
    Float32 &operator=(const Float32 &rhs;;
Packit a4aae4
Packit a4aae4
    virtual ~Float32()
Packit a4aae4
    {}
Packit a4aae4
Packit a4aae4
    virtual BaseType *ptr_duplicate();
Packit a4aae4
    virtual unsigned int width(bool constrained = false) const;
Packit a4aae4
Packit a4aae4
    // DAP2
Packit a4aae4
    virtual bool serialize(ConstraintEvaluator &eval, DDS &dds,  Marshaller &m, bool ce_eval = true);
Packit a4aae4
    virtual bool deserialize(UnMarshaller &um, DDS *dds, bool reuse = false);
Packit a4aae4
Packit a4aae4
    // DAP4
Packit a4aae4
    virtual void compute_checksum(Crc32 &checksum);
Packit a4aae4
    virtual void serialize(D4StreamMarshaller &m, DMR &dmr, /*ConstraintEvaluator &eval,*/ bool filter = false);
Packit a4aae4
    virtual void deserialize(D4StreamUnMarshaller &um, DMR &dmr);
Packit a4aae4
Packit a4aae4
    virtual unsigned int val2buf(void *val, bool reuse = false);
Packit a4aae4
    virtual unsigned int buf2val(void **val);
Packit a4aae4
Packit a4aae4
    virtual dods_float32 value() const;
Packit a4aae4
    virtual bool set_value(dods_float32 f);
Packit a4aae4
Packit a4aae4
    virtual void print_val(FILE *out, string space = "",
Packit a4aae4
                           bool print_decl_p = true);
Packit a4aae4
    virtual void print_val(ostream &out, string space = "",
Packit a4aae4
                           bool print_decl_p = true);
Packit a4aae4
Packit a4aae4
    virtual bool ops(BaseType *b, int op);
Packit a4aae4
    virtual bool d4_ops(BaseType *b, int op);
Packit a4aae4
Packit a4aae4
    virtual void dump(ostream &strm) const ;
Packit a4aae4
};
Packit a4aae4
Packit a4aae4
} // namespace libdap
Packit a4aae4
Packit a4aae4
#endif // _float32_h
Packit a4aae4