Xmipp  v3.23.11-Nereus
Public Member Functions | Protected Attributes | List of all members
alglib::_spline2dinterpolant_owner Class Reference

#include <interpolation.h>

Inheritance diagram for alglib::_spline2dinterpolant_owner:
Inheritance graph
[legend]
Collaboration diagram for alglib::_spline2dinterpolant_owner:
Collaboration graph
[legend]

Public Member Functions

 _spline2dinterpolant_owner ()
 
 _spline2dinterpolant_owner (const _spline2dinterpolant_owner &rhs)
 
_spline2dinterpolant_owneroperator= (const _spline2dinterpolant_owner &rhs)
 
virtual ~_spline2dinterpolant_owner ()
 
alglib_impl::spline2dinterpolantc_ptr ()
 
alglib_impl::spline2dinterpolantc_ptr () const
 

Protected Attributes

alglib_impl::spline2dinterpolantp_struct
 

Detailed Description

Definition at line 674 of file interpolation.h.

Constructor & Destructor Documentation

◆ _spline2dinterpolant_owner() [1/2]

alglib::_spline2dinterpolant_owner::_spline2dinterpolant_owner ( )

Definition at line 8933 of file interpolation.cpp.

8934 {
8936  if( p_struct==NULL )
8937  throw ap_error("ALGLIB: malloc error");
8939  throw ap_error("ALGLIB: malloc error");
8940 }
ae_bool _spline2dinterpolant_init(void *_p, ae_state *_state, ae_bool make_automatic)
#define ae_false
Definition: ap.h:196
void * ae_malloc(size_t size, ae_state *state)
Definition: ap.cpp:222
alglib_impl::spline2dinterpolant * p_struct

◆ _spline2dinterpolant_owner() [2/2]

alglib::_spline2dinterpolant_owner::_spline2dinterpolant_owner ( const _spline2dinterpolant_owner rhs)

Definition at line 8942 of file interpolation.cpp.

8943 {
8945  if( p_struct==NULL )
8946  throw ap_error("ALGLIB: malloc error");
8947  if( !alglib_impl::_spline2dinterpolant_init_copy(p_struct, const_cast<alglib_impl::spline2dinterpolant*>(rhs.p_struct), NULL, ae_false) )
8948  throw ap_error("ALGLIB: malloc error");
8949 }
#define ae_false
Definition: ap.h:196
void * ae_malloc(size_t size, ae_state *state)
Definition: ap.cpp:222
ae_bool _spline2dinterpolant_init_copy(void *_dst, void *_src, ae_state *_state, ae_bool make_automatic)
alglib_impl::spline2dinterpolant * p_struct

◆ ~_spline2dinterpolant_owner()

alglib::_spline2dinterpolant_owner::~_spline2dinterpolant_owner ( )
virtual

Definition at line 8961 of file interpolation.cpp.

8962 {
8964  ae_free(p_struct);
8965 }
void _spline2dinterpolant_clear(void *_p)
alglib_impl::spline2dinterpolant * p_struct
void ae_free(void *p)
Definition: ap.cpp:237

Member Function Documentation

◆ c_ptr() [1/2]

alglib_impl::spline2dinterpolant * alglib::_spline2dinterpolant_owner::c_ptr ( )

Definition at line 8967 of file interpolation.cpp.

8968 {
8969  return p_struct;
8970 }
alglib_impl::spline2dinterpolant * p_struct

◆ c_ptr() [2/2]

alglib_impl::spline2dinterpolant * alglib::_spline2dinterpolant_owner::c_ptr ( ) const

Definition at line 8972 of file interpolation.cpp.

8973 {
8974  return const_cast<alglib_impl::spline2dinterpolant*>(p_struct);
8975 }
alglib_impl::spline2dinterpolant * p_struct

◆ operator=()

_spline2dinterpolant_owner & alglib::_spline2dinterpolant_owner::operator= ( const _spline2dinterpolant_owner rhs)

Definition at line 8951 of file interpolation.cpp.

8952 {
8953  if( this==&rhs )
8954  return *this;
8956  if( !alglib_impl::_spline2dinterpolant_init_copy(p_struct, const_cast<alglib_impl::spline2dinterpolant*>(rhs.p_struct), NULL, ae_false) )
8957  throw ap_error("ALGLIB: malloc error");
8958  return *this;
8959 }
#define ae_false
Definition: ap.h:196
ae_bool _spline2dinterpolant_init_copy(void *_dst, void *_src, ae_state *_state, ae_bool make_automatic)
void _spline2dinterpolant_clear(void *_p)
alglib_impl::spline2dinterpolant * p_struct

Member Data Documentation

◆ p_struct

alglib_impl::spline2dinterpolant* alglib::_spline2dinterpolant_owner::p_struct
protected

Definition at line 684 of file interpolation.h.


The documentation for this class was generated from the following files: