diff options
Diffstat (limited to 'src/progs/list/prog_list.cpp')
-rw-r--r-- | src/progs/list/prog_list.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/progs/list/prog_list.cpp b/src/progs/list/prog_list.cpp new file mode 100644 index 0000000..eb69472 --- /dev/null +++ b/src/progs/list/prog_list.cpp @@ -0,0 +1,15 @@ +/*************************************************************************** + * Copyright (C) 2005-2006 Nicolas Hadacek <hadacek@kde.org> * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ +#include "prog_list.h" + +namespace Programmer +{ + Lister _lister; + const Lister &lister() { return _lister; } +} |