qyconfigcenter.h

来自「kth算法的实现」· C头文件 代码 · 共 55 行

H
55
字号
// ____________________________________________________________________________////  General Information:////  File Name:      QYConfigCenter.h//  Author:         Yan Qi//  Project:        K-ShortestPath////  Description:    The file defines the class CQYConfigCenter, which defines //	basic functions and handles parameters inputted by the user.  ////  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -//  Revision History:////  11/21/2006   Yan   Initial Version////  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -//  Copyright Notice:////  Copyright (c) 2006.////  Warning: This computer program is protected by copyright law and //  international treaties.  Unauthorized reproduction or distribution//  of this program, or any portion of it, may result in severe civil and//  criminal penalties, and will be prosecuted to the maximum extent //  possible under the law.//// ____________________________________________________________________________#ifndef _QYCONFIGCENTER_H_#define _QYCONFIGCENTER_H_#include <map>namespace asu_emit_qyan{	class CQYConfigCenter  	{	public:		typedef std::pair<int, int> Int_Pair;		typedef std::map<Int_Pair, double> IntPair_Double_Map;		typedef std::map<Int_Pair, double>::iterator IntPair_Double_Map_Iterator;			public: // members used by all 			};	}#endif //_QYCONFIGCENTER_H_

⌨️ 快捷键说明

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