From: <sv...@ww...> - 2006-11-14 22:53:15
|
Author: stormbringer Date: 2006-11-14 14:53:09 -0800 (Tue, 14 Nov 2006) New Revision: 2007 Added: trunk/csp/cspsim/windows/SoundOptions.cpp Log: More code for "options" dialog Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=2007 Added: trunk/csp/cspsim/windows/SoundOptions.cpp =================================================================== --- trunk/csp/cspsim/windows/SoundOptions.cpp 2006-11-14 22:50:53 UTC (rev 2006) +++ trunk/csp/cspsim/windows/SoundOptions.cpp 2006-11-14 22:53:09 UTC (rev 2007) @@ -0,0 +1,42 @@ +// Combat Simulator Project +// Copyright (C) 2002 The Combat Simulator Project +// http://csp.sourceforge.net +// +// 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. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + +/** + * @file SoundOptions.cpp + * + **/ + +#include <csp/cspsim/windows/SoundOptions.h> + +#include <osg/Vec4> + +CSP_NAMESPACE + +namespace windows { + +SoundOptions::SoundOptions(wf::Theme* theme) : wf::TabPage(theme) { + setText("Sound"); +} + +SoundOptions::~SoundOptions() { +} + +} // namespace windows + +CSP_NAMESPACE_END |