?? ec.h
字號:
/* -*- C++ -*- */
/**
* @file EC.h
*
* EC.h,v 1.1 2003/08/15 10:05:14 jwillemsen Exp
*
* @author Carlos O'Ryan (coryan@cs.wustl.edu)
*
* Event channel
*/
#ifndef EC_H
#define EC_H
#include "orbsvcs/RtecEventCommS.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class EC
*
* @brief Simple event channel
*/
class EC
{
public:
/// Constructor
EC (void);
/// Run the test
int run (int argc, char* argv[]);
private:
int parse_args (int argc, char *argv[]);
};
#endif /* EC_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -