Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. FileChannel::FileChannel(const std::string &file_path) :
  2. file_path_(file_path), fd_(0)
  3. {
  4. }
  5.  
  6. FileChannel::FileChannel(const std::string &file_path) :
  7. file_path_(file_path), fd_(0)
  8. {
  9. }
  10.  
  11. FileChannel::FileChannel(const std::string &file_path)
  12. : file_path_(file_path), fd_(0)
  13. {
  14. }
  15.  
  16. (defun my-c-c++-mode-init ()
  17. (setq c-basic-offset 4)
  18. (c-set-offset 'member-init-intro '+))
  19.  
  20. (add-hook 'c-mode-common-hook 'my-c-c++-mode-init)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement