개발
-
-
기타개발/Tool 2013. 8. 14. 11:40
Clang/LLVM목표는 GNU 컴파일러 모음 를 대체하는 것이다. C, C++, 오브젝티브-C, 오브젝티브-C++ 프로그래밍 언어
-
MultiUser.nsh - NSIS개발/배포 2013. 6. 17. 09:22
MULTIUSER_INSTALLMODE_COMMANDLINE settingenables the installation mode to be set using the /AllUsers or /CurrentUser command line parametersespecially useful for silent setup!define APP_NAME "Modern UI Test";!define INSTALL_PATH "Software\${APP_NAME}"!define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}" !define MULTIUSER_EXECUTIONLEVEL Highest;!define MULTIUSER..
-
-
UML(클래스 설계)개발/기타 2012. 8. 28. 19:43
Dependency모든 관계는 암시적으로 Dependecy 관계를 가지고 있다메소드 내에서 아규먼트로 사용한다던지 메소드 내의 지역변수로 사용하는 경우 Association멤버로 참조(포인터?) Aggregation전체가 부분을 포함하는(has a) 관계포함하는 클래스와 포함되는 클래스의 생명주기(라이프사이클)는 다르다 Composition전체가 부분을 포함하는(uses a) 관계포함하는 클래스와 포함되는 클래스의 생명주기가 동일하다 * 서로 의미있는 클래스들의 관계> 연관( association ) 관계일반적인 의미의 연결 관계(그래프?) 전체와 부분인 경우(트리?)집합( aggregation ) 관계합성( composition ) 관계life cycle 이 같은 경우 > 상속( inheritance ..