https://mooseframework.inl.gov
Public Member Functions | Public Attributes | List of all members
moose::internal::SolutionInvalidityName Class Reference

Helper class that stores the name associated with an invalid solution. More...

#include <SolutionInvalidityRegistry.h>

Inheritance diagram for moose::internal::SolutionInvalidityName:
[legend]

Public Member Functions

 SolutionInvalidityName (const std::string &object_type, const std::string &message)
 
bool operator== (const SolutionInvalidityName &other) const
 

Public Attributes

std::string object_type
 The type of the object. More...
 
std::string message
 The invalid message. More...
 

Detailed Description

Helper class that stores the name associated with an invalid solution.

Definition at line 34 of file SolutionInvalidityRegistry.h.

Constructor & Destructor Documentation

◆ SolutionInvalidityName()

moose::internal::SolutionInvalidityName::SolutionInvalidityName ( const std::string &  object_type,
const std::string &  message 
)
inline

Definition at line 37 of file SolutionInvalidityRegistry.h.

39  {
40  }
std::string object_type
The type of the object.

Member Function Documentation

◆ operator==()

bool moose::internal::SolutionInvalidityName::operator== ( const SolutionInvalidityName other) const
inline

Definition at line 42 of file SolutionInvalidityRegistry.h.

43  {
44  return object_type == other.object_type && message == other.message;
45  }
std::string object_type
The type of the object.

Member Data Documentation

◆ message

std::string moose::internal::SolutionInvalidityName::message

The invalid message.

Definition at line 50 of file SolutionInvalidityRegistry.h.

Referenced by operator==().

◆ object_type

std::string moose::internal::SolutionInvalidityName::object_type

The type of the object.

Definition at line 48 of file SolutionInvalidityRegistry.h.

Referenced by operator==().


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