⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statushandler.cpp

📁 robocup rcssbase-11.1.0(1).zip
💻 CPP
字号:
// -*-c++-*-

/***************************************************************************
                               statushandler.hpp  
                Implementation for handling parse notifications
                             -------------------
    begin                : 16-JUN-2003
    copyright            : (C) 2003 by The RoboCup Soccer Server 
                           Maintenance Group.
    email                : sserver-admin@lists.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU LGPL as published by the Free Software  *
 *   Foundation; either version 2 of the License, or (at your option) any  *
 *   later version.                                                        *
 *                                                                         *
 ***************************************************************************/

#include "statushandler.hpp"

namespace rcss
{
    namespace conf
    {
        StatusHandler::StatusHandler()
		{}
		
		StatusHandler::~StatusHandler()
		{}
		
		/// called after a hander has been subscribed
	    void
	    StatusHandler::handlerAdded( Builder& )
	    {}
		
		
		/// called after a handler has been unsubscribed
	    void
	    StatusHandler::handlerRemoved( Builder& )
	    {}
		
		void
		StatusHandler::parseError( const std::string&,
								   const std::string&,
								   const std::string&,
								   int )
		{}
		
		void
		StatusHandler::buildError( const std::string&,
								   const std::string&,
								   const std::string&,
								   const std::string&,
								   int )
		{}
		
		void
		StatusHandler::buildWarning( const std::string&,
									 const std::string&,
									 const std::string&,
									 const std::string&,
									 int )
		{}
		
        void
		StatusHandler::creatingConfFile( const std::string& )
		{}

        void
		StatusHandler::createdConfFile( const std::string& )
		{}
		
        void
		StatusHandler::confCreationFailed( const std::string&,
										   int )
		{}
		
		void
		StatusHandler::includeFailed( const std::string&,
									  const std::string&,
									  const std::string&,
									  int )
		{
		}
		
		void
		StatusHandler::loadFailed( const std::string&,
								   const std::string&,
								   const std::vector< boost::filesystem::path >&,
								   const std::string&,
								   int )
		{
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -