[maemo-commits] [maemo-commits] r16277 - in projects/haf/trunk/sapwood: . engine

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Mon Sep 29 19:19:04 EEST 2008
Author: herzi
Date: 2008-09-29 19:18:55 +0300 (Mon, 29 Sep 2008)
New Revision: 16277

Added:
   projects/haf/trunk/sapwood/engine/sapwood-client.c
   projects/haf/trunk/sapwood/engine/sapwood-client.h
Modified:
   projects/haf/trunk/sapwood/ChangeLog
   projects/haf/trunk/sapwood/engine/Makefile.am
Log:
2008-09-29  Sven Herzberg  <sven at imendio.com>

	Added files for reusable client code to connect to the server

	* engine/Makefile.am: added the files
	* engine/sapwood-client.c,
	* engine/sapwood-client.h: new skeletons


Modified: projects/haf/trunk/sapwood/ChangeLog
===================================================================
--- projects/haf/trunk/sapwood/ChangeLog	2008-09-29 13:54:18 UTC (rev 16276)
+++ projects/haf/trunk/sapwood/ChangeLog	2008-09-29 16:18:55 UTC (rev 16277)
@@ -1,5 +1,13 @@
 2008-09-29  Sven Herzberg  <sven at imendio.com>
 
+	Added files for reusable client code to connect to the server
+
+	* engine/Makefile.am: added the files
+	* engine/sapwood-client.c,
+	* engine/sapwood-client.h: new skeletons
+
+2008-09-29  Sven Herzberg  <sven at imendio.com>
+
 	Support the regular xvfb "output" of the testing framework
 
 	* tests/double-free.c (main),

Modified: projects/haf/trunk/sapwood/engine/Makefile.am
===================================================================
--- projects/haf/trunk/sapwood/engine/Makefile.am	2008-09-29 13:54:18 UTC (rev 16276)
+++ projects/haf/trunk/sapwood/engine/Makefile.am	2008-09-29 16:18:55 UTC (rev 16277)
@@ -8,8 +8,10 @@
 
 engine_LTLIBRARIES = libsapwood.la
 
-libsapwood_la_SOURCES = 	\
-	sapwood-main.c		\
+libsapwood_la_SOURCES=\
+	sapwood-client.c \
+	sapwood-client.h \
+	sapwood-main.c \
 	sapwood-rc-style.c	\
 	sapwood-rc-style.h	\
 	sapwood-style.c		\

Added: projects/haf/trunk/sapwood/engine/sapwood-client.c
===================================================================
--- projects/haf/trunk/sapwood/engine/sapwood-client.c	2008-09-29 13:54:18 UTC (rev 16276)
+++ projects/haf/trunk/sapwood/engine/sapwood-client.c	2008-09-29 16:18:55 UTC (rev 16277)
@@ -0,0 +1,25 @@
+/* This file is part of GTK+ Sapwood Engine
+ *
+ * AUTHORS
+ *     Sven Herzberg
+ *
+ * Copyright (C) 2008  Nokia Corporation
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ */
+
+#include "sapwood-client.h"
+

Added: projects/haf/trunk/sapwood/engine/sapwood-client.h
===================================================================
--- projects/haf/trunk/sapwood/engine/sapwood-client.h	2008-09-29 13:54:18 UTC (rev 16276)
+++ projects/haf/trunk/sapwood/engine/sapwood-client.h	2008-09-29 16:18:55 UTC (rev 16277)
@@ -0,0 +1,28 @@
+/* This file is part of GTK+ Sapwood Engine
+ *
+ * AUTHORS
+ *     Sven Herzberg
+ *
+ * Copyright (C) 2008  Nokia Corporation
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ * USA
+ */
+
+#ifndef SAPWOOD_CLIENT_H
+#define SAPWOOD_CLIENT_H
+
+
+#endif /* !SAPWOOD_CLIENT_H */


More information about the maemo-commits mailing list