?? fake.cpp
字號:
/******************************************************** * Some code. Copyright (C) 2003 by Pascal Massimino. * * All Rights Reserved. (http://skal.planet-d.net) * * For Educational/Academic use ONLY. See 'LICENSE.TXT'.* ********************************************************//* * fake.cpp * * Test object for dynamic loading of objects. * tested in test_dyn.cpp * This can serve as a template for building a * dynamicaly-loaded class. ********************************************************/#include "skl.h"#include "skl_syst/skl_dyn_load.h"#include "./fake.h"//////////////////////////////////////////////////////////int FAKE::Print() const { static int Cnt = 7349; printf("hello world!\n"); return Cnt++;}FAKE::~FAKE() {}//////////////////////////////////////////////////////////// -- external symbol exportedSKL_DFLT_DYN_FACTORY(FAKE); //////////////////////////////////////////////////////////
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -