djk77

common.h

Apr 1st, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. /**
  2. * @file common.h
  3. * @Author Michael Kosyakov and Evgeniy Ivanov (ifmo.distributedclass@gmail.com)
  4. * @date March, 2014
  5. * @brief Common definitions and constants for for programming assignments
  6. *
  7. * Students must not modify this file!
  8. */
  9.  
  10. #ifndef __IFMO_DISTRIBUTED_CLASS_COMMON__H
  11. #define __IFMO_DISTRIBUTED_CLASS_COMMON__H
  12.  
  13. // Not extern for simplicity only
  14. static const char * const events_log = "events.log";
  15. static const char * const pipes_log = "pipes.log";
  16.  
  17. #endif // __IFMO_DISTRIBUTED_CLASS_COMMON__H
Add Comment
Please, Sign In to add comment