Xmipp  v3.23.11-Nereus
Public Member Functions | List of all members
cif::TLSSelectionParser< IMPL > Class Template Reference

Public Member Functions

virtual std::unique_ptr< tls_selection > Parse (const std::string &selection) const
 

Detailed Description

template<typename IMPL>
class cif::TLSSelectionParser< IMPL >

Definition at line 1924 of file tls.cpp.

Member Function Documentation

◆ Parse()

template<typename IMPL>
virtual std::unique_ptr<tls_selection> cif::TLSSelectionParser< IMPL >::Parse ( const std::string &  selection) const
inlinevirtual

Definition at line 1927 of file tls.cpp.

1928  {
1929  std::unique_ptr<tls_selection> result;
1930 
1931  try
1932  {
1933  IMPL p(selection);
1934  result = p.Parse();
1935  }
1936  catch (const std::exception &ex)
1937  {
1938  std::cerr << "ParseError: " << ex.what() << std::endl;
1939  }
1940 
1941  return result;
1942  }

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