代码搜索结果
找到约 322,615 项符合
Interface 的代码
interface.h
// interface.h
struct IMotion : public IUnknown
{
STDMETHOD_(void, Fly) () = 0;
STDMETHOD_(int&, GetPosition) () = 0;
};
struct IVisual : public IUnknown
{
STDMETHOD_(void, D
interface.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using Model;
namespace IDAL
{
public interface Iguestbook //留言本接口
{
//得到所有留言
g
interface.cpp
// Fig. 7.22: interface.cpp
// Definition of class Interface
#include "interface.h" // Interface class definition
#include "implementation.h" // Implementation class definition
// constru
interface.h
// Fig. 7.21: interface.h
// Header file for interface.cpp
class Implementation; // forward class declaration
class Interface {
public:
Interface( int );
void setValue( int ); /
interface.h
/*
* include/linux/nfsd/interface.h
*
* defines interface between nfsd and other bits of
* the kernel. Particularly filesystems (eventually).
*
* Copyright (C) 2000 Neil Brown
interface.c.old
/* Code to manipulate interface information, shared between ifconfig and
netstat.
10/1998 partly rewriten by Andi Kleen to support an interface list.
I don't claim that the list operatio
interface.c
/* Code to manipulate interface information, shared between ifconfig and
netstat.
10/1998 partly rewriten by Andi Kleen to support an interface list.
I don't claim that the list operatio
interface.h
// interface.h
struct IMotion : public IUnknown
{
STDMETHOD_(void, Fly) () = 0;
STDMETHOD_(int&, GetPosition) () = 0;
};
struct IVisual : public IUnknown
{
STDMETHOD_(void, D