//
// aegis - project change supervisor
// Copyright (C) 1997, 2005-2008 Peter Miller
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see
// .
//
#ifndef AEGIS_AER_FUNC_ROUND_H
#define AEGIS_AER_FUNC_ROUND_H
#include
/**
* The rpt_func_ceil class is used to represent the ceil
* function, callable from within the report generator.
*/
class rpt_func_ceil:
public rpt_func
{
public:
/**
* The destructor.
*/
virtual ~rpt_func_ceil();
private:
/**
* The constructor. It is private on purpose, use the "create"
* class method instead.
*/
rpt_func_ceil();
public:
/**
* The create class method is used to create a new dynamically
* allocated instance of this class.
*/
static rpt_func::pointer create();
protected:
// See base class for documentation.
const char *name() const;
// See base class for documentation.
bool optimizable() const;
// See base class for documentation.
bool verify(const rpt_expr::pointer &ep) const;
// See base class for documentation.
rpt_value::pointer run(const rpt_expr::pointer &ep, size_t argc,
rpt_value::pointer *argv) const;
private:
/**
* The copy constructor. Do not use.
*/
rpt_func_ceil(const rpt_func_ceil &);
/**
* The assignment operator. Do not use.
*/
rpt_func_ceil &operator=(const rpt_func_ceil &);
};
/**
* The rpt_func_floor class is used to represent the floor
* function, callable from within the report generator.
*/
class rpt_func_floor:
public rpt_func
{
public:
/**
* The destructor.
*/
virtual ~rpt_func_floor();
private:
/**
* The constructor. It is private on purpose, use the "create"
* class method instead.
*/
rpt_func_floor();
public:
/**
* The create class method is used to create a new dynamically
* allocated instance of this class.
*/
static rpt_func::pointer create();
protected:
// See base class for documentation.
const char *name() const;
// See base class for documentation.
bool optimizable() const;
// See base class for documentation.
bool verify(const rpt_expr::pointer &ep) const;
// See base class for documentation.
rpt_value::pointer run(const rpt_expr::pointer &ep, size_t argc,
rpt_value::pointer *argv) const;
private:
/**
* The copy constructor. Do not use.
*/
rpt_func_floor(const rpt_func_floor &);
/**
* The assignment operator. Do not use.
*/
rpt_func_floor &operator=(const rpt_func_floor &);
};
/**
* The rpt_func_round class is used to represent the round
* function, callable from within the report generator.
*/
class rpt_func_round:
public rpt_func
{
public:
/**
* The destructor.
*/
virtual ~rpt_func_round();
private:
/**
* The constructor. It is private on purpose, use the "create"
* class method instead.
*/
rpt_func_round();
public:
/**
* The create class method is used to create a new dynamically
* allocated instance of this class.
*/
static rpt_func::pointer create();
protected:
// See base class for documentation.
const char *name() const;
// See base class for documentation.
bool optimizable() const;
// See base class for documentation.
bool verify(const rpt_expr::pointer &ep) const;
// See base class for documentation.
rpt_value::pointer run(const rpt_expr::pointer &ep, size_t argc,
rpt_value::pointer *argv) const;
private:
/**
* The copy constructor. Do not use.
*/
rpt_func_round(const rpt_func_round &);
/**
* The assignment operator. Do not use.
*/
rpt_func_round &operator=(const rpt_func_round &);
};
/**
* The rpt_func_trunc class is used to represent the trunc
* function, callable from within the report generator.
*/
class rpt_func_trunc:
public rpt_func
{
public:
/**
* The destructor.
*/
virtual ~rpt_func_trunc();
private:
/**
* The constructor. It is private on purpose, use the "create"
* class method instead.
*/
rpt_func_trunc();
public:
/**
* The create class method is used to create a new dynamically
* allocated instance of this class.
*/
static rpt_func::pointer create();
protected:
// See base class for documentation.
const char *name() const;
// See base class for documentation.
bool optimizable() const;
// See base class for documentation.
bool verify(const rpt_expr::pointer &ep) const;
// See base class for documentation.
rpt_value::pointer run(const rpt_expr::pointer &ep, size_t argc,
rpt_value::pointer *argv) const;
private:
/**
* The copy constructor. Do not use.
*/
rpt_func_trunc(const rpt_func_trunc &);
/**
* The assignment operator. Do not use.
*/
rpt_func_trunc &operator=(const rpt_func_trunc &);
};
#endif // AEGIS_AER_FUNC_ROUND_H