Removed the unused Maxsi::StdOut namespace.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-11-02 19:17:17 +01:00
parent cb92f073d9
commit b742eafd7c
1 changed files with 1 additions and 10 deletions

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>. along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
io.h io.cpp
Functions for management of input and output. Functions for management of input and output.
******************************************************************************/ ******************************************************************************/
@ -36,15 +36,6 @@ namespace Maxsi
return SysPrint(Message); return SysPrint(Message);
} }
// TODO: This namespace is hereby deprecated as it was stupid. Delete it soon.
namespace StdOut
{
size_t Print(const char* Message)
{
return SysPrint(Message);
}
}
size_t PrintCallback(void* user, const char* string, size_t stringlen) size_t PrintCallback(void* user, const char* string, size_t stringlen)
{ {
return SysPrint(string); return SysPrint(string);