view src/boundarycondition.h @ 44:fca8c3d75036

register_type is called before every type is used. * A new static variable for every class has been defined. It is named class_type_loaded, and it specify if the corresponding type have yet been loaded or not. If not, it proceed with the registration. This should be only a temporary solution.
author gedeone-octave <marco.vassallo@outlook.com>
date Mon, 22 Jul 2013 11:33:50 +0200
parents cedb2b5d6455
children 3b01e1bd7420
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 _BOUNDARYCONDITION_OCTAVE_
#define _BOUNDARYCONDITION_OCTAVE_

#include <memory>
#include <vector>
#include <dolfin.h>
#include <octave/oct.h>

class boundarycondition : public octave_base_value
{

 public:

  boundarycondition () : octave_base_value () {}

  void print (std::ostream& os, bool pr_as_read_syntax = false) const
  {
     for (std::size_t i = 0; i < bcu.size (); ++i)
       os << "Boundary condition : " << bcu[i]->str (true) << std::endl;
  }


  ~boundarycondition (void) {}


  bool is_defined (void) const { return true; }


  const std::vector< boost::shared_ptr <const dolfin::DirichletBC> > & get_bc (void) const
  { return bcu; }


  void add_bc (const boost::shared_ptr <const dolfin::FunctionSpace> & V,
               boost::shared_ptr<const dolfin::GenericFunction> f, std::size_t n)
  {
    boost::shared_ptr<const dolfin::DirichletBC> p (new dolfin::DirichletBC (V, f, n));
    bcu.push_back(p);
  }

 private:

  std::vector<boost::shared_ptr <const dolfin::DirichletBC> > bcu;

  DECLARE_OCTAVE_ALLOCATOR;
  DECLARE_OV_TYPEID_FUNCTIONS_AND_DATA;

};

  static bool boundarycondition_type_loaded = false;
#endif