Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 350 Bytes

File metadata and controls

7 lines (5 loc) · 350 Bytes

Project Agent Guidance

C++ Type Naming

  • New C++ classes, including interface classes, do not need the legacy Ob prefix.
  • Keep the I prefix for interface classes. For example, use ICacheMemoryGetter instead of ObICacheMemoryGetter.
  • Do not rename existing types only to remove the Ob prefix unless the task explicitly requires it.