Skip to content

Latest commit

ย 

History

History
34 lines (23 loc) ยท 824 Bytes

Qt.md

File metadata and controls

34 lines (23 loc) ยท 824 Bytes

Qt ์ฝ”๋”ฉ ์Šคํƒ€์ผ

C++ ์ฝ”๋”ฉ ์Šคํƒ€์ผ

๊ธฐ๋ณธ์ ์œผ๋กœ Google C++ Style Guide๋ฅผ ๋”ฐ๋ฅธ๋‹ค. ์ด ์™ธ์— ์ฐจ์ด์ ์ด๋‚˜ ์ถ”๊ฐ€ ์‚ฌํ•ญ์€ ์•„๋ž˜์™€ ๊ฐ™๋‹ค.

Naming

  • File Names: ๊ณต๋ฐฑ ๋Œ€์‹  โ€-โ€ ์‚ฌ์šฉ. ํ™•์žฅ์ž๋Š” ์•„๋ž˜์™€ ๊ฐ™์ด
    • ํ—ค๋” ํŒŒ์ผ: .h
    • ์†Œ์Šค ํŒŒ์ผ: .cpp

Formatting

  • Spaces vs. Tabs: Use only spaces, and indent 4 spaces at a time
  • Braces: brace ๋‚ด ์ฝ”๋“œ๊ฐ€ ํ•œ์ค„์ด๋”๋ผ๋„ brace๋กœ ๋ฐ˜๋“œ์‹œ ๊ฐ์‹ธ๋Š” ๊ฒƒ์œผ๋กœ ํ•œ๋‹ค.
if (condition) {
    doSomething();
}

XML ์ฝ”๋”ฉ ์Šคํƒ€์ผ

Naming

  • File Names: ๊ณต๋ฐฑ ๋Œ€์‹  โ€-โ€ ์‚ฌ์šฉ. ํ™•์žฅ์ž๋Š” ์•„๋ž˜์™€ ๊ฐ™์ด
  • ui ํŒŒ์ผ: .ui

Formatting

  • Spaces vs. Tabs: Use only spaces, and indent 2 spaces at a time

์ฐธ๊ณ