#ifndef BOB_H
#define BOB_H
namespace bob{
class Widget { /* ... */ };
class Poppit { /* ... */ };
// ...
}
#endif //BOB_H
#define BOB_H
namespace bob{
class Widget { /* ... */ };
class Poppit { /* ... */ };
// ...
}
#endif //BOB_H




























#include "new.h"
int main() {
using namespace new1;
Arm a;
}
int main() {
using namespace new1;
Arm a;
}
#ifndef TOM_H
#define TOM_H
namespace tom{
class Arm { /* ... */ };
class Leg { /* ... */ };
class Head { /* ... */ };
class Robot {
Arm arm[4];
Leg leg[16];
Head head[3];
// ...
} xanthan;
int i, j, k;
}
#endif //TOM_H
#define TOM_H
namespace tom{
class Arm { /* ... */ };
class Leg { /* ... */ };
class Head { /* ... */ };
class Robot {
Arm arm[4];
Leg leg[16];
Head head[3];
// ...
} xanthan;
int i, j, k;
}
#endif //TOM_H