Revision: 40833
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40833&view=rev
Author:   davidloman
Date:     2010-09-29 15:38:31 +0000 (Wed, 29 Sep 2010)

Log Message:
-----------
Fixed header in geoserv.cxx.  Added geoclient.cxx to add as a 'stress' and 
'test' client.

Modified Paths:
--------------
    rt^3/trunk/src/GS/CMakeLists.txt
    rt^3/trunk/src/GS/geoserv.cxx

Added Paths:
-----------
    rt^3/trunk/src/GS/geoclient.cxx

Property Changed:
----------------
    rt^3/trunk/src/GS/


Property changes on: rt^3/trunk/src/GS
___________________________________________________________________
Modified: svn:ignore
   - autom4te.cache
install.*.log
aclocal.m4
.deps
Makefile
Makefile.in
config.*
configure
libtool
ltmain.sh
.cproject
.project
cmake_install.cmake
CMakeCache.txt
CMakeFiles
*.txt~
*.so
*.a
.libs
__
*.dll
geoserv
*.exe
moc_GeometryService.cxx
gs.h
moc_*
*.backup

   + autom4te.cache
install.*.log
aclocal.m4
.deps
Makefile
Makefile.in
config.*
configure
libtool
ltmain.sh
.cproject
.project
cmake_install.cmake
CMakeCache.txt
CMakeFiles
*.txt~
*.so
*.a
.libs
__
*.dll
geoserv
*.exe
moc_GeometryService.cxx
gs.h
moc_*
*.backup
geoclient


Modified: rt^3/trunk/src/GS/CMakeLists.txt
===================================================================
--- rt^3/trunk/src/GS/CMakeLists.txt    2010-09-29 15:24:56 UTC (rev 40832)
+++ rt^3/trunk/src/GS/CMakeLists.txt    2010-09-29 15:38:31 UTC (rev 40833)
@@ -118,3 +118,42 @@
 
 #Build the project
 RT3_PROJECT_BUILD_EXE()
+
+##############
+##############
+##############
+
+RT3_PROJECT(geoclient)
+
+#Set Include Dirs
+RT3_PROJECT_ADD_INCLUDE_DIRS(
+    ${QT_INCLUDE_DIR}
+)
+
+#Set Libs
+RT3_PROJECT_ADD_LIBS(
+    ${QT_LIBRARIES}
+    utility
+    gs
+    net
+)
+
+#set Source files
+RT3_PROJECT_ADD_SOURCES (
+       geoclient.cxx
+)
+
+#Set INST Headers
+RT3_PROJECT_ADD_INST_HEADERS()
+
+#Set NOINST headers
+RT3_PROJECT_ADD_NOINST_HEADERS()
+
+#Set QT INST headers
+RT3_PROJECT_ADD_QT_INST_HEADERS()
+
+#Set QT NOINST headers
+RT3_PROJECT_ADD_QT_NOINST_HEADERS()
+
+#Build the project
+RT3_PROJECT_BUILD_EXE()

Added: rt^3/trunk/src/GS/geoclient.cxx
===================================================================
--- rt^3/trunk/src/GS/geoclient.cxx                             (rev 0)
+++ rt^3/trunk/src/GS/geoclient.cxx     2010-09-29 15:38:31 UTC (rev 40833)
@@ -0,0 +1,41 @@
+/*                   G E O C L I E N T . C X X
+ * BRL-CAD
+ *
+ * Copyright (c) 2010 United States Government as represented by
+ * the U.S. Army Research Laboratory.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library 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 file; see the file named COPYING for more
+ * information.
+ */
+/** @file geoclient.cxx
+ *
+ * Brief description
+ *
+ */
+
+#include "GeometryService.h"
+
+#include "libutility.h"
+#include "libevent.h"
+
+#include <iostream>
+#include <stdlib.h>
+
+#include <QtCore/QString>
+
+int main(int argc, char* argv[])
+{
+
+
+    return 0;
+}


Property changes on: rt^3/trunk/src/GS/geoclient.cxx
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Revision Date Author
Added: svn:eol-style
   + native

Modified: rt^3/trunk/src/GS/geoserv.cxx
===================================================================
--- rt^3/trunk/src/GS/geoserv.cxx       2010-09-29 15:24:56 UTC (rev 40832)
+++ rt^3/trunk/src/GS/geoserv.cxx       2010-09-29 15:38:31 UTC (rev 40833)
@@ -1,4 +1,4 @@
-/*                       G M A I N . C X X
+/*                     G E O S E R V . C X X
  * BRL-CAD
  *
  * Copyright (c) 2010 United States Government as represented by
@@ -25,7 +25,6 @@
 
 #include "GeometryService.h"
 
-#include "libalf.h"
 #include "libutility.h"
 #include "libevent.h"
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to