From: acevest Date: Tue, 12 May 2015 08:55:06 +0000 (+0800) Subject: ... X-Git-Url: http://zhaoyanbai.com/repos/html/static/gitweb.css?a=commitdiff_plain;h=9721381cc7a2196fd81404b05d79a3fb31d92579;p=acecode.git ... --- 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 0000000..20d822c Binary files /dev/null and b/learn/server/.sconsign.dblite differ 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 0000000..86621a2 Binary files /dev/null and b/tools/AceBox/AceBox/Images.xcassets/head.imageset/head.png differ