Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #ifndef SBAKIC_H_INCLUDED
  2. #define SBAKIC_H_INCLUDED
  3.  
  4. class sbakic{
  5. public:
  6. int sum2Numbers(int a,int b);
  7. protected:
  8. private:
  9. };
  10.  
  11. int sum2Numbers(int a,int b){
  12. return a+b;
  13. }
  14.  
  15. #endif // SBAKIC_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement