代码搜索:Interface
找到约 10,000 项符合「Interface」的源代码
代码结果 10,000
www.eeworm.com/read/167890/5451305
h bionet-interface.h
#include
#include "bionet.h"
void register_callbacks();
bool connect_to_nag();
bool bionet_iterate();
gpointer bionet_interface_main(gpointer p);
void bionet_update_node_list(gchar *patter
www.eeworm.com/read/167890/5451310
c bionet-interface.c
#include
#include
#include
#include "cortex.h"
#include "bionet-interface.h"
#include "gui_gtk.h"
#include "model_gtk.h"
#include "bionet.h"
extern GtkWidget *syst
www.eeworm.com/read/162614/5517575
c interface1.c
// PR c++/22252
// { dg-do link }
// { dg-additional-sources "interface1a.cc" }
// { dg-options "-fno-inline" }
#pragma implementation
#include "interface1.h"
www.eeworm.com/read/162614/5517643
h interface1.h
#pragma interface
struct B
{
B(){};
~B(){}
};
struct A {
B a;
};
www.eeworm.com/read/162614/5518264
h interface2.h
#pragma interface
template
struct C
{
explicit C(const T& t) : a(t) { }
virtual ~C() { }
T a;
};
www.eeworm.com/read/162614/5518307
c interface1.c
// { dg-do run }
// { dg-options "-O2" }
// { dg-additional-sources "interface1-a.cc" }
#pragma implementation "interface1.h"
#include "interface1.h"
extern void g();
int main () {
g();
}
www.eeworm.com/read/162614/5518323
c interface2.c
// Copyright (C) 2005 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 2 Jun 2005
// PR 21280
// Origin: Jens Maurer
#include "interfac
www.eeworm.com/read/162614/5518342
h interface1.h
#pragma interface "interface1.h"
struct Test {
void f();
};
inline void Test::f() {
}
www.eeworm.com/read/162614/5518403
cc interface1-a.cc
struct Test {
void f();
};
Test t;
void g() {
t.f();
}