mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-08 17:17:06 +00:00
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
/* $Id$ */
|
|
/*
|
|
Copyright (C) 2005 - 2008 by Joeri Melis <joeri_melis@hotmail.com>
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2
|
|
or at your option any later version.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
//! @file loadscreen_empty.cpp
|
|
//!
|
|
|
|
#include "loadscreen.hpp"
|
|
|
|
void loadscreen::set_progress(const int /*percentage*/, const std::string &/*text*/, const bool /*commit*/)
|
|
{}
|
|
|
|
void loadscreen::increment_progress(const int /*percentage*/, const std::string &/*text*/, const bool /*commit*/) {}
|
|
|
|
void loadscreen::clear_screen(const bool /*commit*/) {}
|
|
|
|
loadscreen *loadscreen::global_loadscreen = 0;
|
|
|
|
void increment_filesystem_progress () {}
|
|
|
|
void increment_binary_wml_progress () {}
|
|
|
|
void increment_set_config_progress () {}
|
|
|
|
void increment_parser_progress () {}
|
|
|