📄 cardvalue.cpp
字号:
//$Id: CardValue.cpp,v 1.1 2006/08/03 23:18:38 markus Rel $//PROJECT : Cardgames//SUBSYSTEM : libCard//REFERENCES ://TODO ://BUGS ://REVISION : $Revision: 1.1 $//AUTHOR : Markus Schwab//CREATED : 02.08.2006//COPYRIGHT : Copyright (C) 2006// 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.#include <cardgames-cfg.h>#include "CardWidget.h"#include "CardValue.h"CardValue* CardValue::instance (NULL);//-----------------------------------------------------------------------------/// Default constructor; Fills the values//-----------------------------------------------------------------------------CardValue::CardValue () { for (unsigned nr (CardWidget::THREE); nr < CardWidget::TEN; ++nr) insert (std::make_pair (nr, std::string (1, CardWidget::strNumber (static_cast<CardWidget::NUMBERS> (nr))))); insert (std::make_pair (CardWidget::TEN, _("10"))); insert (std::make_pair (CardWidget::JACK, _("Jack"))); insert (std::make_pair (CardWidget::QUEEN, _("Queen"))); insert (std::make_pair (CardWidget::KING, _("King"))); insert (std::make_pair (CardWidget::ACE, _("Ace")));}//-----------------------------------------------------------------------------/// Destructor//-----------------------------------------------------------------------------CardValue::~CardValue () {}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -