Remove dead code from class Application
This commit is contained in:
parent
1d7104a96b
commit
6f7241b08b
2 changed files with 2 additions and 22 deletions
|
|
@ -169,7 +169,6 @@ void Application::ThreadMessages::removeThreadMessages()
|
||||||
#endif // THREAD_SAFE_CANTERA
|
#endif // THREAD_SAFE_CANTERA
|
||||||
|
|
||||||
Application::Application() :
|
Application::Application() :
|
||||||
stop_on_error(false),
|
|
||||||
m_suppress_deprecation_warnings(false)
|
m_suppress_deprecation_warnings(false)
|
||||||
{
|
{
|
||||||
#if !defined( THREAD_SAFE_CANTERA )
|
#if !defined( THREAD_SAFE_CANTERA )
|
||||||
|
|
|
||||||
|
|
@ -215,8 +215,7 @@ public:
|
||||||
|
|
||||||
//! Destructor for class deletes global data
|
//! Destructor for class deletes global data
|
||||||
/*!
|
/*!
|
||||||
* Delete any open XML trees, the logwriter, and
|
* Deletes any open XML trees.
|
||||||
* the XML log, if any.
|
|
||||||
*/
|
*/
|
||||||
virtual ~Application();
|
virtual ~Application();
|
||||||
|
|
||||||
|
|
@ -396,22 +395,7 @@ protected:
|
||||||
|
|
||||||
//! Current vector of input directories to search for input files
|
//! Current vector of input directories to search for input files
|
||||||
std::vector<std::string> inputDirs;
|
std::vector<std::string> inputDirs;
|
||||||
//! Current list of error messages
|
|
||||||
//vector<string> errorMessage;
|
|
||||||
//! Current list of warning messages
|
|
||||||
//vector<string> warning;
|
|
||||||
//! Current error Routine
|
|
||||||
//vector<string> errorRoutine;
|
|
||||||
//! Last error message
|
|
||||||
//string msglog;
|
|
||||||
//! Current line length
|
|
||||||
// size_t linelen;
|
|
||||||
//! Current value of stop_on_error
|
|
||||||
bool stop_on_error;
|
|
||||||
//! Current map of options
|
|
||||||
std::map<std::string, std::string> options;
|
|
||||||
//! Current value of tmp_dir
|
|
||||||
std::string tmp_dir;
|
|
||||||
//! Current vector of XML file trees that have been previously parsed
|
//! Current vector of XML file trees that have been previously parsed
|
||||||
//! The second element of the value is used to store the last-modified time
|
//! The second element of the value is used to store the last-modified time
|
||||||
//! for the file, to enable change detection.
|
//! for the file, to enable change detection.
|
||||||
|
|
@ -421,9 +405,6 @@ protected:
|
||||||
|
|
||||||
bool m_suppress_deprecation_warnings;
|
bool m_suppress_deprecation_warnings;
|
||||||
|
|
||||||
//! Current pointer to the logwriter
|
|
||||||
//Logger* logwriter;
|
|
||||||
|
|
||||||
#if defined(THREAD_SAFE_CANTERA)
|
#if defined(THREAD_SAFE_CANTERA)
|
||||||
ThreadMessages pMessenger ;
|
ThreadMessages pMessenger ;
|
||||||
#else
|
#else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue