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{TT>g!73OBZ0wFF2Y%n0(TJOXdp}Egwlk8$G*a!qRs4JVKrc~WM-SoJy#L;D| zHdRxV-;u}sioEPoensB$kROnru+?)BBVa=wcB`^4s@BZ(oUhOMzH`0_VN^k*=)$rGD`<*f+Uo`vuzG^>gU!+X#~wUEGwIvqjx`U~`=n1$uFE>#vQC*^U5PP8 zjK_GMhOnUsnIn2(Ve=;aw>&6j zsQfI1=ZcuE1^-bR5u;`19PV1GN`03YjN86VDYr~)xT;fenM>h?DAeEEeS*=1)ESh} zm!96lSC zTQhu>R(!6)D^aMEu|C1KWR?-x zb_lPBMYa<{ITd#lFE7$J2}ur-)PFaGiXx@G>WR2kV%-B(Y@CQK4>a-81O2~r6(a<5 zIItChod%A(3Mx9-wtP*~eVdxxaBa)948{mob=|Ev6%!m$h?kv_qqgnFgp!;_<|0-_5k<(p^k_Zsg8gfEtw z$A@peK0HhBA0NI+mj`Ei_5I(Uo*l(IuK%AGOM`po(bI4$i}^ltjt?Q6$#cj#oJs{V zs%y;R4rMOmmd|vCP1WL>RFU>~CUo6Q4t@Wc|&P#NYJGXgVEojlYdXCIgMjX*c%c zG#bCp*-qT)Y#&HxI~l^%z}ZfV!K?0ewhu+LDHp=b4QDGWli^i98j%T&=KhBvSxAU9 zAC1bCMhkZX%DCXg7|~J)kFqpc9-`4omPV_0&?s`b0~fq@%LPYHV#oz=c(5tS)Ggn3 zF`3TX_-EV=(CoEYF1LSi#f(2wBCj}y?ro5nV#-GO6BH9xvR@mpI%Ex_;{DjLTg#fn z^*c)c)Ps%d(r==oi*@eWj^jA0W|+*tj$!*1PPIzK@-6Pd)=iUG^x&BoS45(Y=OMgM uL_Y2rvVF|m-#5g3IvamplX#6XHi`MzJ0&RZ^-r(FeB_@Zlh`fy%Rc}}G1wdc 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.47.0