#ifndef __classB_hxx__
#define __classB_hxx__

#include "stdio.h"

class classB {
public:
  void methodB() {
    printf("void classB::methodB()\n");
  }
};

#endif /* __classB_hxx__ */
