GnuCash c935c2f+
Loading...
Searching...
No Matches
Public Member Functions
RowInfo Class Reference

Public Member Functions

 RowInfo (GtkTreePath *path, GNCImportMainMatcher *info)
 
 RowInfo (const TreeRowReferencePtr &ref, GNCImportMainMatcher *info)
 
GNCImportTransInfo * get_trans_info ()
 
GtkTreeIter * get_iter ()
 
const char * get_orig_desc ()
 
const char * get_orig_notes ()
 
const char * get_orig_memo ()
 

Detailed Description

Definition at line 897 of file import-main-matcher.cpp.

Constructor & Destructor Documentation

◆ RowInfo() [1/2]

RowInfo::RowInfo ( GtkTreePath *  path,
GNCImportMainMatcher *  info 
)
inline

Definition at line 900 of file import-main-matcher.cpp.

901 {
902 init_from_path (path, info);
903 }

◆ RowInfo() [2/2]

RowInfo::RowInfo ( const TreeRowReferencePtr &  ref,
GNCImportMainMatcher *  info 
)
inline

Definition at line 904 of file import-main-matcher.cpp.

905 {
906 auto path = gtk_tree_row_reference_get_path (ref.get());
907 init_from_path (path, info);
908 gtk_tree_path_free (path);
909 }

◆ ~RowInfo()

RowInfo::~RowInfo ( )
inline

Definition at line 910 of file import-main-matcher.cpp.

911 {
912 g_free (m_orig_desc);
913 g_free (m_orig_notes);
914 g_free (m_orig_memo);
915 }

Member Function Documentation

◆ get_iter()

GtkTreeIter * RowInfo::get_iter ( )
inline

Definition at line 917 of file import-main-matcher.cpp.

917{ return &m_iter; };

◆ get_orig_desc()

const char * RowInfo::get_orig_desc ( )
inline

Definition at line 918 of file import-main-matcher.cpp.

918{ return m_orig_desc; };

◆ get_orig_memo()

const char * RowInfo::get_orig_memo ( )
inline

Definition at line 920 of file import-main-matcher.cpp.

920{ return m_orig_memo; };

◆ get_orig_notes()

const char * RowInfo::get_orig_notes ( )
inline

Definition at line 919 of file import-main-matcher.cpp.

919{ return m_orig_notes; };

◆ get_trans_info()

GNCImportTransInfo * RowInfo::get_trans_info ( )
inline

Definition at line 916 of file import-main-matcher.cpp.

916{ return m_trans_info; };

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