⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cdtype.cpp

📁 磁盘管理工具,主要管理光盘信息和内容希望大家喜欢
💻 CPP
字号:
//$Id: CDType.cpp,v 1.2 2005/05/14 23:32:28 markus Rel $//PROJECT     : CDManager//SUBSYSTEM   : Movie//REFERENCES  ://TODO        ://BUGS        ://REVISION    : $Revision: 1.2 $//AUTHOR      : Markus Schwab//CREATED     : 29.11.2004//COPYRIGHT   : Copyright (C) 2004, 2005// 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 "cdmgr-cfg.h"#include <glibmm/convert.h>#include "CDType.h"CDType* CDType::instance (NULL);//-----------------------------------------------------------------------------/// Constructor//-----------------------------------------------------------------------------CDType::CDType () {   insert (std::make_pair (0, _("Unspecified")));   insert (std::make_pair (1, _("1 DVD")));   insert (std::make_pair (2, _("2 DVDs")));   insert (std::make_pair (3, _("1 CD")));   insert (std::make_pair (4, _("2 CDs")));   insert (std::make_pair (5, _("3 CDs")));}//-----------------------------------------------------------------------------/// Destructor//-----------------------------------------------------------------------------CDType::~CDType () {}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -