From 9721381cc7a2196fd81404b05d79a3fb31d92579 Mon Sep 17 00:00:00 2001 From: acevest Date: Tue, 12 May 2015 16:55:06 +0800 Subject: [PATCH] ... --- learn/server/.Building.lock | 0 learn/server/.sconsign.dblite | Bin 0 -> 3979 bytes learn/server/BLADE_ROOT | 0 learn/server/BUILD | 6 +++++ learn/server/config.h | 10 +++++++++ learn/server/server.cpp | 16 +++++++++++++ .../head.imageset/Contents.json | 21 ++++++++++++++++++ .../Images.xcassets/head.imageset/head.png | Bin 0 -> 633 bytes 8 files changed, 53 insertions(+) create mode 100644 learn/server/.Building.lock create mode 100644 learn/server/.sconsign.dblite create mode 100644 learn/server/BLADE_ROOT create mode 100644 learn/server/BUILD create mode 100644 learn/server/config.h create mode 100644 learn/server/server.cpp create mode 100644 tools/AceBox/AceBox/Images.xcassets/head.imageset/Contents.json create mode 100644 tools/AceBox/AceBox/Images.xcassets/head.imageset/head.png diff --git a/learn/server/.Building.lock b/learn/server/.Building.lock new file mode 100644 index 0000000..e69de29 diff --git a/learn/server/.sconsign.dblite b/learn/server/.sconsign.dblite new file mode 100644 index 0000000000000000000000000000000000000000..20d822ced2494ae32ef59bb32774e817b44eb8b9 GIT binary patch literal 3979 zcmdT{*>2lL6t&}Bw!AO#t|U&P#<48!WVgg|?8JK_i)h+{5Xj-sqrj1TO{qW%5a@UG zv0u@bKJ_d5)`xyTKcRQHSd{J5eQ1HkFoe-ia&TLmtDPQm4^$hg0@TP$PGI?{b z@*O?*tMyu?>cZe&r#aB5zN3D_es=~#yWjls+BCcU>h~0~2X7xY9ka&?gA89E*p15Wkb*=dzj8!%zvC6}Jjn(M=)#W;Y$WTSfG!;}Tn zW}jn|hF?8_nL{&saWiiCaNB}eyd!=(-3G4jCf2$1vzh z7<4esCXWjDQ*j>z@UT5@K7dc+xO*KeyVr3k=A!^suf}{F$6Vtv3p{4CV2*HJxT=ht zI;FNx%e}n`^%6XF|D&WH;bqU7IfdF(l0@BeMWQ>3B-&IJ9oLpb&k=~|z;H~{k%Qaa zEt-yE1!7sHwUDCeSVW8Q04CBjowQ)eoWGRT^(2|RxYKr;$TJq)Hiy=m{`oozWc_4y z6=v-ex96_m_PhlPEp9KGxuWjLs^DspDo|VUY(e&@Y7Jnq0&xvTrk>_%gm|iA%Z8vA4Qdc%@5sR`t?AfiH`f`gm`_%Y zUv9p6lUu9jR>~Wt7hC1r8p%bQ+xr_Yj>Gk4ysT_)ZXO-rKkgoxrOmBlxZf_x2Npa` zp^S(>wEHzSmjtEfQCHVJRj`R_>#jmPQIKs-lwE-oT~B~Vh|;-*D6hyYC9>539=D5Z zEr3EI?l4}KB~N0U94xN?dH}^dm-dW>!U|Dgc?7n2$S}tu!y`yx&#*Vd`4X|TtOw4b8bK>&wb2t--EpqQlEvLZ;TTrAp# zL3Pz8M0XvPDzZ!z)x#s^pN`=XZMI@IR`z!e_tFXoHxkNMO0PD`FE0q6TdC~tJbS)V zO0MI#WVv11IN18?sI(W|QMvezDr&96U&9eE=Bv~>UI$R(=iqZVk%~=;BvRGW2{ovv zx>TaJBB-7y7F87mgB%)_W1-+|7;aB<`Lo28^qmmG6aK%O3n>ROxa(pC+fB+4dW7y| zE_kkCI9kyol!%I`5?#Vx={mNo%2H9&X*?B%cYj#trA_S12_=6o%T1gvA;n+^(RBF{8MLWGR!VM?QVUTMqNp& zKjdt?uXVOP+}ZX9(0Ac%``N{#($l=i zxawk3ow@v5)D6s`wif-d6*GEG33~z-^QHy~tzz;<`7aa`-%(P&0A|{(VOYEm4ZFFt zNu0l?^a~a&wtC1C&T4dqhNk16Aj%5*LtWNfY=C01sJg0W!1862n6uyx5|zd3xEsK| vJj+HsgSQV%*-d?ejV814zcq<1l#xlyMsH*>${YRDBQ_fPr_dz&g=XO|NHN$P literal 0 HcmV?d00001 diff --git a/learn/server/BLADE_ROOT b/learn/server/BLADE_ROOT new file mode 100644 index 0000000..e69de29 diff --git a/learn/server/BUILD b/learn/server/BUILD new file mode 100644 index 0000000..84769a6 --- /dev/null +++ b/learn/server/BUILD @@ -0,0 +1,6 @@ +cc_binary( + name = 'server', + srcs = [ + 'server.cpp', + ], +) diff --git a/learn/server/config.h b/learn/server/config.h new file mode 100644 index 0000000..4c67455 --- /dev/null +++ b/learn/server/config.h @@ -0,0 +1,10 @@ +/* + * ------------------------------------------------------------------------ + * File Name: config.h + * Author: Zhao Yanbai + * Tue May 12 15:31:22 2015 + * Description: none + * ------------------------------------------------------------------------ + */ + +#pragma once diff --git a/learn/server/server.cpp b/learn/server/server.cpp new file mode 100644 index 0000000..15547bb --- /dev/null +++ b/learn/server/server.cpp @@ -0,0 +1,16 @@ +/* + * ------------------------------------------------------------------------ + * File Name: server.cpp + * Author: Zhao Yanbai + * Tue May 12 15:30:58 2015 + * Description: none + * ------------------------------------------------------------------------ + */ +#include +using namespace std; + +int main(int argc, char *argv[]) { + + cout << "Server is Starting ... " << endl; + return 0; +} diff --git a/tools/AceBox/AceBox/Images.xcassets/head.imageset/Contents.json b/tools/AceBox/AceBox/Images.xcassets/head.imageset/Contents.json new file mode 100644 index 0000000..614b44a --- /dev/null +++ b/tools/AceBox/AceBox/Images.xcassets/head.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "idiom" : "universal", + "scale" : "1x", + "filename" : "head.png" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/tools/AceBox/AceBox/Images.xcassets/head.imageset/head.png b/tools/AceBox/AceBox/Images.xcassets/head.imageset/head.png new file mode 100644 index 0000000000000000000000000000000000000000..86621a2081aaa84da8933c940025c35d4f47c6e8 GIT binary patch literal 633 zcmV-<0*3vGP)!M+c{Ch!1RkYd91U`voiORfjof-Kr{J=hs! z(W&dfenS>@T@NPvVz9?5x*Y5dvgpqBf7mr-(RKVvKF*oz!FC{vc3cnEfGldd9&8G- zXv*ziz!7A@5ehy8djnap;7hO~j-ebKqv%I4U>XUOg9Ot)z8bASIau-anXQZy$e;=BzFXW*=XyJMGU{MSfgT-K81&jUxm2x5U TS%@M300000NkvXXu0mjf{dxr) literal 0 HcmV?d00001 -- 2.44.0