Revision: 42008
          http://brlcad.svn.sourceforge.net/brlcad/?rev=42008&view=rev
Author:   davidloman
Date:     2011-01-07 14:18:45 +0000 (Fri, 07 Jan 2011)

Log Message:
-----------
While wiring in the Test harness for GS, we have run into the need to separate  
Client from CmdLine client functions.  Stubbed in GSCmdLineClient.

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

Added Paths:
-----------
    rt^3/trunk/include/GSCmdLineClient.h
    rt^3/trunk/src/GS/GSCmdLineClient.cxx

Added: rt^3/trunk/include/GSCmdLineClient.h
===================================================================
--- rt^3/trunk/include/GSCmdLineClient.h                                (rev 0)
+++ rt^3/trunk/include/GSCmdLineClient.h        2011-01-07 14:18:45 UTC (rev 
42008)
@@ -0,0 +1,48 @@
+/*               G S C M D L I N E C L I E N T . H
+ * BRL-CAD
+ *
+ * Copyright (c) 2011 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 GSCmdLineClient.h
+ *
+ * Brief description
+ *
+ */
+
+#ifndef __GSCMDLINECLIENT_H__
+#define __GSCMDLINECLIENT_H__
+
+#include "GSClient.h"
+#include <QtCore/QString>
+
+class GSCmdLineClient: public GSClient {
+public:
+       GSCmdLineClient(QString localNodeName);
+       virtual ~GSCmdLineClient();
+};
+
+#endif /* __GSCMDLINECLIENT_H__ */
+
+/*
+ * Local Variables:
+ * tab-width: 8
+ * mode: C
+ * indent-tabs-mode: t
+ * c-file-style: "stroustrup"
+ * End:
+ * ex: shiftwidth=4 tabstop=8
+ */


Property changes on: rt^3/trunk/include/GSCmdLineClient.h
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Revision Date Author
Added: svn:eol-style
   + native

Modified: rt^3/trunk/src/GS/CMakeLists.txt
===================================================================
--- rt^3/trunk/src/GS/CMakeLists.txt    2011-01-07 09:06:07 UTC (rev 42007)
+++ rt^3/trunk/src/GS/CMakeLists.txt    2011-01-07 14:18:45 UTC (rev 42008)
@@ -54,6 +54,7 @@
        Account.cxx
        AccountManager.cxx
        GSClient.cxx
+    GSCmdLineClient.cxx
        cmds/ClientCmdRegistry.cxx
        cmds/AbstractClientCmd.cxx
        cmds/HelpCmd.cxx
@@ -76,6 +77,7 @@
     FileDataSource.h
        DbObject.h
        GSClient.h
+    GSCmdLineClient.h
        ClientCmdRegistry.h
        AbstractClientCmd.h
        HelpCmd.h

Added: rt^3/trunk/src/GS/GSCmdLineClient.cxx
===================================================================
--- rt^3/trunk/src/GS/GSCmdLineClient.cxx                               (rev 0)
+++ rt^3/trunk/src/GS/GSCmdLineClient.cxx       2011-01-07 14:18:45 UTC (rev 
42008)
@@ -0,0 +1,42 @@
+/*             G S C M D L I N E C L I E N T . C X X
+ * BRL-CAD
+ *
+ * Copyright (c) 2011 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 GSCmdLineClient.cxx
+ *
+ * Brief description
+ *
+ */
+
+#include "GSCmdLineClient.h"
+
+GSCmdLineClient::GSCmdLineClient(QString 
localNodeName):GSClient(localNodeName) {
+}
+
+GSCmdLineClient::~GSCmdLineClient() {
+}
+
+/*
+ * Local Variables:
+ * tab-width: 8
+ * mode: C
+ * indent-tabs-mode: t
+ * c-file-style: "stroustrup"
+ * End:
+ * ex: shiftwidth=4 tabstop=8
+ */


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


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

------------------------------------------------------------------------------
Gaining the trust of online customers is vital for the success of any company
that requires sensitive data to be transmitted over the Web.   Learn how to 
best implement a security strategy that keeps consumers' information secure 
and instills the confidence they need to proceed with transactions.
http://p.sf.net/sfu/oracle-sfdevnl 
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to