view src/coefficient.h @ 80:16ccfaf1476a

The function DEFINE_OCTAVE_ALLOCATOR and DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA are now implemented in the header file. * Makefile.in: the link between different .o file is no longer needed. * *.h: now implement the method described above. * fem_init_env.cc: include the *.h and use the function defined here instead of linking them at compile time
author gedeone-octave <marcovass89@hotmail.it>
date Sat, 03 Aug 2013 14:37:09 +0200
parents d6df5cc8ef53
children 5fe2a157f4eb
line wrap: on
line source

/*
 Copyright (C) 2013 Marco Vassallo

 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 2 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 <http://www.gnu.org/licenses/>.
*/

#ifndef _COEFFICIENT_OCTAVE_
#define _COEFFICIENT_OCTAVE_

#include "expression.h"

class coefficient : public octave_base_value
{

 public:
  coefficient () : octave_base_value () {}

  coefficient (std::string & _str, octave_fcn_handle & _f) :
               str (_str), expr (new expression (_f)) { }

  coefficient (std::string & _str, octave_fcn_handle & _f, std::size_t _n) :
               str (_str), expr (new expression (_f, _n)) { }

  void print (std::ostream& os, bool pr_as_read_syntax = false) const
  {
    os << "Coefficient " << str << " : " <<  expr->str (true) << std::endl;
  }

  ~coefficient (void) { }

  bool is_defined (void) const { return true; }

  const boost::shared_ptr <const expression> & get_expr (void) const
  { return expr; }

  const std::string & get_str (void) const
  { return str; }

 private:

  std::string str;
  boost::shared_ptr <const expression> expr;

  DECLARE_OCTAVE_ALLOCATOR;
  DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA;

};
static bool coefficient_type_loaded = false;

DEFINE_OCTAVE_ALLOCATOR (coefficient);
DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (coefficient, "coefficient", "coefficient");

#endif