a.cpp 88 B

12345678910
  1. #include "a.h"
  2. A::A( ) { }
  3. A::~A( ) { }
  4. int A::add(int a, int b) {
  5. return a + b;
  6. }