~/.vimrc에 다음 두 줄 추가. (/home//.vimrc 를 의미) (.vimrc 파일이 없으면 만들면 됩니다.) autocmd BufReadPre SConstruct set filetype=python autocmd BufReadPre SConscript set filetype=python 출처 : http://bjoernd.blogspot.com/2007/05/scons-and-vim_10.html
http://www.oak-tree.us/blog/index.php/2009/05/12/pyqt-windows http://www.qtforum.org/article/24337/error-running-qt-application.html QtCore4.dll 등과 같은 Qt의 바이너리들이 여러 프로그램에 포함되어 있기 때문에 내가 사용하고자 하는 버전의 QtCore4.dll이 가장 먼저 인식되도록 조작을 해줘야 한다. 시스템 변수의 path에서 사용하고자 하는 Qt의 dll이 들어있는 폴더가 가장 앞에 오도록 한다. 예를 들면, "...\Qt\qt\bin"와 같은 경로가 path 환경 변수의 가장 앞에 오도록 한다. (※ 참고 : 환경 변수에 의해 참조되는 매틀랩 폴더에도 QtCore4.dll이 들어있다..
paperSizeCombo->addItem(tr("A0 (841 x 1189 mm)"), QPrinter::A0); paperSizeCombo->addItem(tr("A1 (594 x 841 mm)"), QPrinter::A1); paperSizeCombo->addItem(tr("A2 (420 x 594 mm)"), QPrinter::A2); paperSizeCombo->addItem(tr("A3 (297 x 420 mm)"), QPrinter::A3); paperSizeCombo->addItem(tr("A4 (210 x 297 mm, 8.26 x 11.7 inches)"), QPrinter::A4); paperSizeCombo->addItem(tr("A5 (148 x 210 mm)"), QPrinter..
from Effective C++ by Scott Meyers - Experiments in C++ and Java. Let's compare the results.. // main.cpp #include using namespace std; class Glass { public: Glass() { this->sayHello(); } virtual void sayHello() { cout
#ifndef DW_TIMEMSR__H__ #define DW_TIMEMSR__H__ #include namespace DW { class TimeMsr { public: // LARGE_INTEGER.QuadPart is LONGLONG(a.k.a __int64) LARGE_INTEGER larBegin; LARGE_INTEGER larEnd; static LARGE_INTEGER larFrequency; public: TimeMsr() { if (larFrequency.QuadPart == 0) // if the value of frequency is not loaded QueryPerformanceFrequency(&larFrequency); // retrieves the frequency of t..
// MyDll.h #ifndef DW_MYDLL__H__ #define DW_MYDLL__H__ #if !defined(MYLIBAPI) #define MYLIBAPI extern "C" __declspec(dllimport) #endif // 위 매크로는 dll을 이용하는 소스코드(실행 모듈)에서 적용된다. // dll 제작에 사용되는 소스코드에서는 MYLIBAPI를 dllexport로 정의하게 된다. MYLIBAPI int result; MYLIBAPI int add(int a, int b); MYLIBAPI void printResult(); #endif // DW_MYDLL__H__ // MyDll.cpp #include using namespace std; #define MYLIBAPI ext..
# First of all, need to read python doc. about ctypes.. from ctypes import * class Obj(Structure) : _fields_ = [("name", c_char_p), ("id", c_int)] class Person(Structure) : _fields_ = [("stInfo", Obj)] def __init__(self, person=None): self.stInfo = Obj() if person is not None : self.stInfo = person.stInfo def __str__(self) : return "I'm %s, and my id is %d" % (self.stInfo.name, self.stInfo.id) q..
- Total
- Today
- Yesterday
- Item 9
- QPrinter.Letter
- cython
- CanDrA
- GSX 1200 pro
- C++
- pandas
- Accelerated C++
- structure
- ctypes
- PyQt
- MSVC++
- 이상한 문자
- destructor
- matrix multiplication
- 볼륨 낮춤
- 설치
- 볼륨 조절
- tensorflow
- TensorBoard
- TCGA
- QPrinter.A4
- QT
- dll
- armadillo c++
- GSX 1000 pro
- Visual C++
- volume dial
- how to solve it
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |