Revision: 56964
          http://sourceforge.net/p/brlcad/code/56964
Author:   brlcad
Date:     2013-08-19 18:50:46 +0000 (Mon, 19 Aug 2013)
Log Message:
-----------
headers should be self-contained.  include common.h before the system headers, 
then the main file doesn't need to know it needed to do that.

Modified Paths:
--------------
    brlcad/trunk/src/proc-db/mkbuilding.c
    brlcad/trunk/src/proc-db/mkbuilding.h

Modified: brlcad/trunk/src/proc-db/mkbuilding.c
===================================================================
--- brlcad/trunk/src/proc-db/mkbuilding.c       2013-08-19 18:47:19 UTC (rev 
56963)
+++ brlcad/trunk/src/proc-db/mkbuilding.c       2013-08-19 18:50:46 UTC (rev 
56964)
@@ -23,7 +23,6 @@
  *
  */
 
-#include "common.h"
 #include "mkbuilding.h"
 
 void mkbdlg_usage(void)

Modified: brlcad/trunk/src/proc-db/mkbuilding.h
===================================================================
--- brlcad/trunk/src/proc-db/mkbuilding.h       2013-08-19 18:47:19 UTC (rev 
56963)
+++ brlcad/trunk/src/proc-db/mkbuilding.h       2013-08-19 18:50:46 UTC (rev 
56964)
@@ -17,19 +17,12 @@
  * License along with this file; see the file named COPYING for more
  * information.
  */
-/** @file proc-db/mkbuilding.h
- *
- *
- *
- */
 
 #ifndef __MKBUILDING_H__
 #define __MKBUILDING_H__
 
-#define USE2X4   1
-#define USE2X6   2
+#include "common.h"
 
-
 #include <stdlib.h>
 #include <stdio.h>
 #include <math.h>
@@ -42,6 +35,10 @@
 #include "wdb.h"
 
 
+#define USE2X4   1
+#define USE2X6   2
+
+
 void mkbldg_makeWallSegment(char *name, struct rt_wdb *db_filepointer, point_t 
p1, point_t p2);
 
 void mkbldg_makeframe(struct bu_vls *name, struct rt_wdb *db_fileptr, point_t 
p1, point_t p2, int thickness);

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


------------------------------------------------------------------------------
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511&iu=/4140/ostg.clktrk
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to