mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
df1859da76
avoid compiler warning. * ld-srec/sr3.cc (class Foo): Likewise.
25 lines
403 B
C++
25 lines
403 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 int 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 ();
|
|
};
|