TestDLL.h 81 B

12345678910
  1. #pragma once
  2. class TestMe
  3. {
  4. public:
  5. int GetIt(int a)
  6. {
  7. return a + 100;
  8. }
  9. };