diff options
Diffstat (limited to 'src/CommandLine.hxx')
-rw-r--r-- | src/CommandLine.hxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/CommandLine.hxx b/src/CommandLine.hxx index 214150eae..d8dedb1fb 100644 --- a/src/CommandLine.hxx +++ b/src/CommandLine.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2013 The Music Player Daemon Project + * Copyright (C) 2003-2014 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -20,15 +20,13 @@ #ifndef MPD_COMMAND_LINE_HXX #define MPD_COMMAND_LINE_HXX -#include <glib.h> - class Error; struct options { - gboolean kill; - gboolean daemon; - gboolean log_stderr; - gboolean verbose; + bool kill; + bool daemon; + bool log_stderr; + bool verbose; }; bool |