mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
25 lines
399 B
C
25 lines
399 B
C
|
// Class Foo
|
||
|
|
||
|
#pragma interface
|
||
|
|
||
|
#define FOOLISH_NUMBER -4711
|
||
|
|
||
|
#ifndef FOO_MSG_LEN
|
||
|
#define FOO_MSG_LEN 80
|
||
|
#endif
|
||
|
|
||
|
class Foo {
|
||
|
static int foos;
|
||
|
int i;
|
||
|
const len = FOO_MSG_LEN;
|
||
|
char message[len];
|
||
|
public:
|
||
|
static void init_foo ();
|
||
|
static int nb_foos() { return foos; }
|
||
|
Foo();
|
||
|
Foo( char* message);
|
||
|
Foo(const Foo&);
|
||
|
Foo & operator= (const Foo&);
|
||
|
~Foo ();
|
||
|
};
|