📄 targetidset.h
字号:
// -*-c++-*-//===========================================================//= University of Illinois at Urbana-Champaign =//= Department of Computer Science =//= Dr. Dan Roth - Cognitive Computation Group =//= =//= Project: SNoW =//= =//= Module: TargetIdSet.h =//= Version: 3.2.0 =//= Authors: Jeff Rosen, Andrew Carlson, Nick Rizzolo =//= Date: xx/xx/99 = //= =//= Comments: =//===========================================================#ifndef TARGETIDSET_H__#define TARGETIDSET_H__#include "SnowTypes.h"#if defined(HASH_SET) && !defined(WIN32)#include <hash_set>#else#include <set>#endifusing namespace std;#if defined(HASH_SET) && !defined(WIN32)class TargetIdSet : public hash_set<FeatureID>#elseclass TargetIdSet : public set<FeatureID>#endif{ public: bool Parse( const char* in ); // Information and debugging support void Show(ostream* out);};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -