Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. /*   header file: foo.h   */
  2.  
  3. class Foo {
  4. private:
  5.     void bar();
  6. };
  7.  
  8. /*   source file: foo.cpp  */
  9.  
  10. inline void Foo::bar()
  11. {
  12.     // do stuff
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement