Revision: 41630
          http://brlcad.svn.sourceforge.net/brlcad/?rev=41630&view=rev
Author:   davidloman
Date:     2010-12-15 18:36:11 +0000 (Wed, 15 Dec 2010)

Log Message:
-----------
Stub in GSClient.  Will be the fancy new formalized class for all the ad-hoc 
code in geoclient.cxx will go.

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

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

Modified: rt^3/trunk/src/GS/CMakeLists.txt
===================================================================
--- rt^3/trunk/src/GS/CMakeLists.txt    2010-12-15 18:33:14 UTC (rev 41629)
+++ rt^3/trunk/src/GS/CMakeLists.txt    2010-12-15 18:36:11 UTC (rev 41630)
@@ -53,6 +53,7 @@
        SessionManager.cxx
        Account.cxx
        AccountManager.cxx
+       GSClient.cxx
 )
 
 #Set INST Headers
@@ -72,6 +73,7 @@
 RT3_PROJECT_ADD_NOINST_HEADERS(
        DbObjectManifest.h
        GeometryProcessor.h
+       GSClient.h
 )
 
 #Set QT INST headers

Added: rt^3/trunk/src/GS/GSClient.cxx
===================================================================
--- rt^3/trunk/src/GS/GSClient.cxx                              (rev 0)
+++ rt^3/trunk/src/GS/GSClient.cxx      2010-12-15 18:36:11 UTC (rev 41630)
@@ -0,0 +1,59 @@
+/*                    G S C L I E N T . C X X
+ * BRLCAD
+ *
+ * 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 GSClient.cxx
+ * GSClient.cxx
+ *
+ */
+
+#include "GSClient.h"
+
+GSClient::GSClient() {
+       // TODO Auto-generated constructor stub
+
+}
+
+GSClient::~GSClient() {
+       // TODO Auto-generated destructor stub
+}
+
+bool
+GSClient::hasCmd(QString cmd)
+{
+
+
+}
+
+void
+GSClient::execCmd(QString cmd, QString args[])
+{
+
+
+}
+
+
+/*
+ * 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/GSClient.cxx
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:keywords
   + Revision Date Author
Added: svn:eol-style
   + native

Added: rt^3/trunk/src/GS/GSClient.h
===================================================================
--- rt^3/trunk/src/GS/GSClient.h                                (rev 0)
+++ rt^3/trunk/src/GS/GSClient.h        2010-12-15 18:36:11 UTC (rev 41630)
@@ -0,0 +1,52 @@
+/*                      G S C L I E N T . H
+ * BRLCAD
+ *
+ * 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 GSClient.h
+ * GSClient.h
+ *
+ */
+
+#ifndef GSCLIENT_H_
+#define GSCLIENT_H_
+
+#include <QtCore/QString>
+
+class GSClient {
+public:
+       GSClient();
+       virtual ~GSClient();
+
+       bool hasCmd(QString cmd);
+       void execCmd(QString cmd, QString args[]);
+
+private:
+
+};
+
+#endif /* GSCLIENT_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/src/GS/GSClient.h
___________________________________________________________________
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.

------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to