------

[ AD ] Port Monitor ( Try to use a Best WebSite Monitoring Tool )

------

연극 뮤지컬이 자생적으로 버텨나가야 하는 현실이다 보니 흥행에만 목을 맨

인지도 높은 캐릭터 뮤지컬 혹은 저예산의 초라한 극이 양산 되고 있습니다.

영화나..

게임이나..



7. 사용 클래스의 싱글턴으로 구성

싱글턴 메크로 추가

 

//싱글턴을위한

#define DECLEAR_SINGLETON( className )\

public:\

             static className* Instance();\

             virtual void releaseInstance();\

private:\

             static className* m_pInstance;

 

#define CREATE_FUNCTION( className , funcName ) \

             static className* ##funcName()\

             {\

             return className::Instance();\

             };

 

#define IMPLEMENT_SINGLETON( className )\

             className* className::m_pInstance = NULL;\

             className* className::Instance()\

             {\

             if ( NULL == m_pInstance )\

                           {\

                           m_pInstance = new className;\

                           }\

                           return m_pInstance;\

             }\

             void className::releaseInstance()\

             {\

             if ( NULL != m_pInstance )\

                           {\

                           delete m_pInstance;\

                           m_pInstance = NULL;\

                           }\

             }

.h 파일

class CMsgView : public CListView

{

             DECLEAR_SINGLETON( CMsgView);

.

}

CREATE_FUNCTION( CMsgView, LogView );

 

.cpp 파일 위에  IMPLEMENT_SINGLETON( CMsgView ); 추가

 

// CMsgView

IMPLEMENT_SINGLETON( CMsgView );

IMPLEMENT_DYNCREATE(CMsgView, CListView)

 

실제 사용 클래스 객체 생성

 

CMainFrame::CMainFrame()

{

             LogView();

}

 

CMainFrame::~CMainFrame()

{

              LogView()->releaseInstance();

}

 


'온라인게임 > vc++' 카테고리의 다른 글

error C2143  (2) 2010.10.11
줄번호 visual studio c++ 2010  (0) 2010.10.08
visual studio 2010 동영상 강좌 / 강의  (0) 2010.10.07
단축키 visual studio 2010  (0) 2010.10.07
Pre-processor(전처리기)  (0) 2010.10.07



갤럭시 S와 갤럭시 Tab의 화면 배치를 양쪽 모두를 만족 시키기....

해상도 / 양쪽 적용

문법을 맞추긴 보다는 핵심 부분만 강조 한겁니다. ( 실제 코딩시는 문법을 지켜서 하세요)

<RelativeLayout>
<TextView android:text="30" android:layout_toLeftOf="ccc"></TextView>

<TextView android:id="@+id/ccc"  android:text="/" android:layout_centerInParent="true"></TextView>

<TextView android:text="40" android:layout_toRightOf="ccc"></TextView>

</RelativeLayout>
줄번호 보이게 하기
visual studio c++ 2010

Tools->Options
도구 > 옵션을 선택한 후

TextEditor->
왼쪽의 트리에서 텍스트 편집기 > 모든 언어를 선택하면 아래의 화면이 표시된다.




'온라인게임 > vc++' 카테고리의 다른 글

error C2143  (2) 2010.10.11
사용 클래스의 싱글턴으로 구성  (0) 2010.10.08
visual studio 2010 동영상 강좌 / 강의  (0) 2010.10.07
단축키 visual studio 2010  (0) 2010.10.07
Pre-processor(전처리기)  (0) 2010.10.07

제주도교육청은 서귀포시 대정읍 제주영어교육도시에 들어서는 공립 국제학교 착공식을 30일 개최했다.
학교 명칭은 ‘한국국제학교(Korea International School, Jeju)’로 정해졌다.

이 학교는 485억 원이 투자돼 3만9061m²(약 1만1800평) 터에 건축 총면적 2만8899m²(약 8740평) 규모로 지어진다.
기숙사와 수영장, 체육관, 공연장 등을 갖춘다. 20년 동안 학교 위탁운영을 맡은 ㈜YBM시사는
이달 말까지 입학전형요강을 확정해 교육감 승인을 받은 뒤 내년 9월 개교한다.

운영업체는 12일 광주를 시작으로 7개 도시를 순회하며 입학설명회를 연다.
22일부터 원서접수를 받아 내년 1월 최종합격자를 발표한다.
이 업체는 미국교육과정을 운영하는 조건으로 5년 안에 미국 서부지역 학교연합(WASC) 인증을 받는다.
장기적으로 국제공통 대학입학자격 부여제도인 IB(International Baccalaureate) 프로그램을 도입한다.

학생 정원은 국내 초등학교 4년∼고교 1년까지 과정에 해당하는 4∼9학년 432명.
제주지역 학생은 정원의 5%를 정원 외로 따로 선발한다.

내년 개교할 때는 9학년을 제외한 360명을 모집한다.
이들 학생이 중학교 과정을 이수한 뒤 고교 과정이 운영된다.
연간 수업료는 초등 과정 1700만 원, 중학 과정 1800만 원. 기숙사 비용은 별도로 내야 한다.

박순철 제주도교육청 국제학교설립추진단은
“내년 상반기(1∼6월)에 소방 경찰 보건 인력이 상주하는 행정지원센터 등을 갖춘다”며 “운영
초기 내국인 중심이 되겠지만 미국교육과정을 운영하는 만큼 중국, 동남아 등에서 학생을
유치해 명실상부한 국제학교를 만들겠다”고 말했다.

'in English' 카테고리의 다른 글

yuna  (0) 2010.12.22
Superstar K John Park winning Huh in shooting commercials  (0) 2010.10.28
Grade 5  (1) 2010.10.07
Grade 4  (0) 2010.10.07
Grade 3  (0) 2010.10.07

Samsung Galaxy 안드로이드 커널 빌드

www.kandroid.org

출처 : http://opensource.samsungmobile.com/index.jsp
==> http://opensource.samsung.com
 
1. 다운로드 Samsung i7500 Galaxy Android Kernel 
 
    http://img.kr.samsungmobile.com/images/opensource/download/OpenSource/GT-I7500_OpenSource.zip
[현재 없음]
 
2. 압축 푸신 후,
 
    cd BSP/kernel_2.6.27
 
3. 변환 : dos file format -> unix file formatlsls


 
    find . -type f -name '*' -exec dos2unix {} ;
 
4. 커널 빌드 :
 
    make capela_defconfig ARCH=arm
    make ARCH=arm CROSS_COMPILE=<android_home>/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-
    
    참조 : <android_home> : android full source home directory



갤럭시S 커널 소스  주소입니다.

http://opensource.samsung.com

다운로드는 아래와 같이 들어가시면 됩니다.

http://opensource.samsung.com/  > Mobile > Mobile Phone > SHW-M110S
 

SHW-M110S_OpenSource.zip  <-- 다운
 

[압축 해제후 각 폴더 정보]

SHW-M110S_OpenSource\SHW-M110S_eclair.tar\opensrc

How to build


1. Get android open source.
    : version info - Android eclair 2.1 (android-2.1_r2)
     ( Download site : http://source.android.com )

2. Overwrite modules that you want to build.

3. Add the following lines at the end of build/target/board/generic/BoardConfig.mk

BOARD_HAVE_BLUETOOTH := true
BT_USE_BTL_IF := true
BT_ALT_STACK := true
BRCM_BTL_INCLUDE_A2DP := true
BRCM_BT_USE_BTL_IF := true

4. make

 SHW-M110S_OpenSource\3d_module_GPL.tar\3d_module_GPL

SGX Embedded Systems DDK for Linux kernel.
Copyright (C) 2008 Imagination Technologies Ltd. All rights reserved.
======================================================================
About
-------------------------------------------

This is the Imagination Technologies SGX DDK for the Linux kernel.


License
-------------------------------------------

You may use, distribute and copy this software under the terms of
GNU General Public License version 2.

The full GNU General Public License version 2 is included in this
distribution in the file called "COPYING".


Build and Install Instructions
-------------------------------------------

For details see the "INSTALL" file.

To build for, change to the appropriate target directory, e.g.:
$ cd eurasiacon/build/linux/platform/kbuild

Issue the make command:
$ make BUILD=debug all

The DDK software must be installed by the root user.  Become the root user:
$ su

Install the DDK software:
$ make install

Become an ordinary user again:
$ exit


Contact information:
-------------------------------------------

Imagination Technologies Ltd. <gpl-support@imgtec.com>
Home Park Estate, Kings Langley, Herts, WD4 8LZ, UK



SHW-M110S_OpenSource\SHW-M110S_Kernel.tar\GalaxyS

################################################################################

1. How to Build
 - get Toolchain
  From Codesourcery site( http://www.codesourcery.com )
  Ex) Download : http://www.codesourcery.com/sgpp/lite/arm/portal/package6493/public/arm-none-eabi/arm-2010q1-188-arm-none-eabi-i686-pc-linux-gnu.tar.bz2

  recommand : up to 2009q3 version.
     Feature : ARM
     Target OS : "EABI"
     package : "IA32 GNU/Linux TAR"

 - edit build_kernel.sh
  edit "TOOLCHAIN" and "TOOLCHAIN_PREFIX" to right toolchain path(You downloaded).
  Ex)  30 TOOLCHAIN=`pwd`/../arm-2010q1/bin/  // `pwd` means current path.
    31 TOOLCHAIN_PREFIX=arm-none-eabi-   // You have to check.

 - run build_kernel.sh
  $ ./build_kernel.sh

2. Output files
 - Kernel : linux-2.6.29/arch/arm/boot/zImage
 - module : modules/*/*.ko

3. How to Clean
 - run build_kernel.sh Clean
  $ ./build_kernel.sh Clean

################################################################################

'0.일반개발' 카테고리의 다른 글

C# DataGridView 속성 변경하기  (0) 2011.05.26
Layout Center  (0) 2010.10.08
안드로이드 커널 소스  (0) 2010.10.08
안드로이드 ADT 설치 / 삭제  (0) 2010.10.07
Template 만들기  (0) 2010.10.07

안드로이드 폰 제조사별 소스 받기 / 오픈 소스 / 공개 사이트

디자이어
갤럭시s
모토로이
안드로이드원
옵티머스

▶ HTC Android Kernel Open Source

▶ Samsung Android Kernel Open Source

▶ Motorola Android Kernel(+α) Open Source

▶ LGE Android Kernel(+α) Open Source


'0.일반개발' 카테고리의 다른 글

Layout Center  (0) 2010.10.08
Samsung Galaxy 안드로이드 커널 빌드  (0) 2010.10.08
안드로이드 ADT 설치 / 삭제  (0) 2010.10.07
Template 만들기  (0) 2010.10.07
대체 편집기 /  (0) 2010.10.07

  • 3:20
    대기열에 추가됨
  • 3:16
    대기열에 추가됨
  • 3:33
    대기열에 추가됨
  • 3:39
    대기열에 추가됨
  • 2:49
    대기열에 추가됨
  • 3:41
    대기열에 추가됨
  • 3:04
    대기열에 추가됨
  • 3:07
    대기열에 추가됨
  • 3:00
    대기열에 추가됨
  • 4:46
    대기열에 추가됨
  • 3:34
    대기열에 추가됨
  • 3:14
    대기열에 추가됨
  • 3:09
    대기열에 추가됨
  • 4:08
    대기열에 추가됨
  • 3:44
    대기열에 추가됨
  • 3:34
    대기열에 추가됨
  • 3:13
    대기열에 추가됨
  • 3:20
    대기열에 추가됨
  • 4:42
    대기열에 추가됨
  • 3:15
    대기열에 추가됨
  • 3:13
    대기열에 추가됨
  • 2:30
    대기열에 추가됨
  • 3:28
    대기열에 추가됨
  • 4:48
    대기열에 추가됨
  • 4:06
    대기열에 추가됨
  • 4:12
    대기열에 추가됨
  • 3:23
    대기열에 추가됨
  • 4:00
    대기열에 추가됨
  • 4:10
    대기열에 추가됨
  • 3:56
    대기열에 추가됨
  • 4:25
    대기열에 추가됨
  • 4:21
    대기열에 추가됨
  • 4:29
    대기열에 추가됨
  • 4:11
    대기열에 추가됨
  • 3:56
    대기열에 추가됨
  • 4:28
    대기열에 추가됨
  • 4:06
    대기열에 추가됨
  • 4:51
    대기열에 추가됨
  • 5:02
    대기열에 추가됨
  • 5:14
    대기열에 추가됨
  • 4:23
    대기열에 추가됨
  • 5:26
    대기열에 추가됨
  • 5:47
    대기열에 추가됨
  • 5:27
    대기열에 추가됨
  • 5:38
    대기열에 추가됨
  • 5:30
    대기열에 추가됨
  • 5:50
    대기열에 추가됨
  • 5:16
    대기열에 추가됨

  • http://goo.gl/fOmL

    C9 Lectures: Stephan T. Lavavej - Standard Template Library (STL), 1 of n



    Welcome to another installment of C9 Lectures. In the following series, learn all about STL from the great Stephan T. Lavavej, Microsoft's keeper of the STL cloth (this means he manages the partnership with the owners of STL and Microsoft, including, of course, bug fixes and enhancements to the STL that ships as part of Visual C++).

    In this first part, Stephan introduces STL and then demonstrates many of its core features
    (iterators, algorithms, and data structures).

    As is Stephan's nature, he elaborates on technical details in very substantive way.
    The Standard Template Library, or
    STL, is a C++ library of container classes, algorithms, and iterators.
    STL provides many fundamental algorithms and data structures.

    The STL is a general purpose library:
     its components are heavily parameterized such that almost every component in the STL is a
    template.



    This is not an introductory series on C++.

    As such, it is expected that viewers already possess a working knowledge of the C++ language.

    Go ahead and open VC++ IDE and follow along--there are many examples provided on-screen and Stephan will monitor this thread and answer questions.


    Enjoy. Learn.

    Books mentioned by Stephen:

    The C++ Standard Library: A Tutorial And Reference by Nicolai M. Josuttis

    Effective STL by Scott Meyers   :

    http://goo.gl/0FbW



    Right click “Save as…”

    '온라인게임 > stl' 카테고리의 다른 글

    클래스 템플릿 2-2  (0) 2010.10.01
    함수 템플릿 Template 2-1  (0) 2010.10.01
    STL이 무엇인지 알고 계십니까? 1  (0) 2010.10.01
    Singleton 단일체

    단일체 클래스 - 오직 하나의 객체만 생성하여 사용하는 클래스


    GoF의 디자인 패턴 / PEARSON Addison Wesley


    '온라인게임' 카테고리의 다른 글

    vc++, 외부 라이브러리 사용하기  (0) 2010.10.11
    visual c++ error c2664  (0) 2010.10.11
    모바일 게임 기획  (0) 2010.10.05
    WinSock 2 client server  (0) 2010.10.03
    오프라인 게임 절차  (0) 2010.10.02

    + Recent posts