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

#include <interpolation.h>

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

Public Member Functions

 _spline1dinterpolant_owner ()
 
 _spline1dinterpolant_owner (const _spline1dinterpolant_owner &rhs)
 
_spline1dinterpolant_owneroperator= (const _spline1dinterpolant_owner &rhs)
 
virtual ~_spline1dinterpolant_owner ()
 
alglib_impl::spline1dinterpolantc_ptr ()
 
alglib_impl::spline1dinterpolantc_ptr () const
 

Protected Attributes

alglib_impl::spline1dinterpolantp_struct
 

Detailed Description

Definition at line 313 of file interpolation.h.

Constructor & Destructor Documentation

◆ _spline1dinterpolant_owner() [1/2]

alglib::_spline1dinterpolant_owner::_spline1dinterpolant_owner ( )

Definition at line 1574 of file interpolation.cpp.

1575 {
1577  if( p_struct==NULL )
1578  throw ap_error("ALGLIB: malloc error");
1580  throw ap_error("ALGLIB: malloc error");
1581 }
#define ae_false
Definition: ap.h:196
void * ae_malloc(size_t size, ae_state *state)
Definition: ap.cpp:222
ae_bool _spline1dinterpolant_init(void *_p, ae_state *_state, ae_bool make_automatic)
alglib_impl::spline1dinterpolant * p_struct

◆ _spline1dinterpolant_owner() [2/2]

alglib::_spline1dinterpolant_owner::_spline1dinterpolant_owner ( const _spline1dinterpolant_owner rhs)

Definition at line 1583 of file interpolation.cpp.

1584 {
1586  if( p_struct==NULL )
1587  throw ap_error("ALGLIB: malloc error");
1588  if( !alglib_impl::_spline1dinterpolant_init_copy(p_struct, const_cast<alglib_impl::spline1dinterpolant*>(rhs.p_struct), NULL, ae_false) )
1589  throw ap_error("ALGLIB: malloc error");
1590 }
#define ae_false
Definition: ap.h:196
void * ae_malloc(size_t size, ae_state *state)
Definition: ap.cpp:222
ae_bool _spline1dinterpolant_init_copy(void *_dst, void *_src, ae_state *_state, ae_bool make_automatic)
alglib_impl::spline1dinterpolant * p_struct

◆ ~_spline1dinterpolant_owner()

alglib::_spline1dinterpolant_owner::~_spline1dinterpolant_owner ( )
virtual

Definition at line 1602 of file interpolation.cpp.

1603 {
1605  ae_free(p_struct);
1606 }
void _spline1dinterpolant_clear(void *_p)
alglib_impl::spline1dinterpolant * p_struct
void ae_free(void *p)
Definition: ap.cpp:237

Member Function Documentation

◆ c_ptr() [1/2]

alglib_impl::spline1dinterpolant * alglib::_spline1dinterpolant_owner::c_ptr ( )

Definition at line 1608 of file interpolation.cpp.

1609 {
1610  return p_struct;
1611 }
alglib_impl::spline1dinterpolant * p_struct

◆ c_ptr() [2/2]

alglib_impl::spline1dinterpolant * alglib::_spline1dinterpolant_owner::c_ptr ( ) const

Definition at line 1613 of file interpolation.cpp.

1614 {
1615  return const_cast<alglib_impl::spline1dinterpolant*>(p_struct);
1616 }
alglib_impl::spline1dinterpolant * p_struct

◆ operator=()

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

Definition at line 1592 of file interpolation.cpp.

1593 {
1594  if( this==&rhs )
1595  return *this;
1597  if( !alglib_impl::_spline1dinterpolant_init_copy(p_struct, const_cast<alglib_impl::spline1dinterpolant*>(rhs.p_struct), NULL, ae_false) )
1598  throw ap_error("ALGLIB: malloc error");
1599  return *this;
1600 }
void _spline1dinterpolant_clear(void *_p)
#define ae_false
Definition: ap.h:196
ae_bool _spline1dinterpolant_init_copy(void *_dst, void *_src, ae_state *_state, ae_bool make_automatic)
alglib_impl::spline1dinterpolant * p_struct

Member Data Documentation

◆ p_struct

alglib_impl::spline1dinterpolant* alglib::_spline1dinterpolant_owner::p_struct
protected

Definition at line 323 of file interpolation.h.


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