代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/403009/11524784
h tv.h
// tv.h -- Tv and Remote classes
#ifndef TV_H_
#define TV_H_
class Tv
{
public:
friend class Remote; // Remote can access Tv private parts
enum {Off, On};
enum {MinVal,MaxVal =
www.eeworm.com/read/346216/11761195
h control.h
// control.h : Interface of class GameControl
#ifndef BWINDOW_H
#define BWINDOW_H
#include "Bug.h"
#include "Hunter.h"
enum GameLevel { Slow, Fast, Done };
enum GameStatus { GameWon, Playi
www.eeworm.com/read/256522/11990983
h nmea.h
#ifndef __NMEA_H__
#define __NMEA_H__
typedef enum tagNMEA_BOOLEAN
{
Unknown,
True,
False
} NMEA_BOOLEAN;
typedef enum tagNMEA_EASTWEST
{
EW_Unknown = 0,
East,
West
} N
www.eeworm.com/read/253260/12235018
h tv.h
// tv.h -- Tv and Remote classes
#ifndef TV_H_
#define TV_H_
class Tv
{
public:
friend class Remote; // Remote can access Tv private parts
enum {Off, On};
enum {MinVal,MaxVal =
www.eeworm.com/read/253260/12235711
h tv.h
// tv.h -- Tv and Remote classes
#ifndef TV_H_
#define TV_H_
class Tv
{
public:
friend class Remote; // Remote can access Tv private parts
enum {Off, On};
enum {MinVal,MaxVal =
www.eeworm.com/read/337096/12392048
h tv.h
// tv.h -- Tv and Remote classes
#ifndef TV_H_
#define TV_H_
class Tv
{
public:
friend class Remote; // Remote can access Tv private parts
enum {Off, On};
enum {MinVal,MaxVal =
www.eeworm.com/read/128347/14303896
h gui.h
#ifndef GUI_H
#define GUI_H
#include "CTYPE.h"
#include "Queue.h"
#define MAX_WINSLOT 32
typedef unsigned long RGB;
typedef enum{
eWinDesktop,
eWinTaskBar,
eWinNormal,
}Enum
www.eeworm.com/read/206141/15299549
h nmea.h
#ifndef __NMEA_H__
#define __NMEA_H__
typedef enum tagNMEA_BOOLEAN
{
Unknown,
True,
False
} NMEA_BOOLEAN;
typedef enum tagNMEA_EASTWEST
{
EW_Unknown = 0,
East,
West
} N
www.eeworm.com/read/11888/235863
h nmea.h
#ifndef __NMEA_H__
#define __NMEA_H__
typedef enum tagNMEA_BOOLEAN
{
Unknown,
True,
False
} NMEA_BOOLEAN;
typedef enum tagNMEA_EASTWEST
{
EW_Unknown = 0,
East,
West
} N
www.eeworm.com/read/470720/1447890
c template43.c
// Test matching of partial specializations.
template
class EQUAL {
public:
enum { value = 0 };
};
template
class EQUAL {
public:
enum { value = 1 };
};
int x;
int y