David Rose 25 лет назад
Родитель
Сommit
7f2e95f037

+ 19 - 13
panda/src/dgraph/Sources.pp

@@ -7,29 +7,35 @@
     sgraph graph putil sgattrib mathutil
 
   #define SOURCES \
-    buttonEventDataAttribute.I buttonEventDataAttribute.cxx \
+    buttonEventDataAttribute.I buttonEventDataAttribute.cxx  \
     buttonEventDataAttribute.h buttonEventDataTransition.I \
     buttonEventDataTransition.cxx buttonEventDataTransition.h \
     config_dgraph.cxx config_dgraph.h dataGraphTraversal.cxx \
-    dataGraphTraversal.h \
-    dataGraphTraverser.I dataGraphTraverser.cxx dataGraphTraverser.h \
-    dataNode.cxx dataNode.h dataRelation.I \
+    dataGraphTraversal.h dataGraphTraverser.I dataGraphTraverser.cxx \
+    dataGraphTraverser.h dataNode.cxx dataNode.h dataRelation.I \
     dataRelation.N dataRelation.cxx dataRelation.h \
     describe_data_verbose.cxx describe_data_verbose.h \
-    doubleDataAttribute.I doubleDataAttribute.cxx doubleDataAttribute.h \
-    doubleDataTransition.I doubleDataTransition.cxx \
-    doubleDataTransition.h doublePtrDataAttribute.I \
-    doublePtrDataAttribute.cxx doublePtrDataAttribute.h \
-    doublePtrDataTransition.I doublePtrDataTransition.cxx \
-    doublePtrDataTransition.h intDataAttribute.I intDataAttribute.cxx \
-    intDataAttribute.h intDataTransition.I intDataTransition.cxx \
-    intDataTransition.h matrixDataAttribute.I matrixDataAttribute.cxx \
+    doubleDataAttribute.I doubleDataAttribute.cxx \
+    doubleDataAttribute.h doubleDataTransition.I \
+    doubleDataTransition.cxx doubleDataTransition.h \
+    doublePtrDataAttribute.I doublePtrDataAttribute.cxx \
+    doublePtrDataAttribute.h doublePtrDataTransition.I \
+    doublePtrDataTransition.cxx doublePtrDataTransition.h \
+    intDataAttribute.I intDataAttribute.cxx intDataAttribute.h \
+    intDataTransition.I intDataTransition.cxx intDataTransition.h \
+    matrixDataAttribute.I matrixDataAttribute.cxx \
     matrixDataAttribute.h matrixDataTransition.I \
     matrixDataTransition.cxx matrixDataTransition.h \
+    numericDataAttribute.I numericDataAttribute.h \
+    numericDataTransition.I numericDataTransition.h \
+    pointerDataAttribute.I pointerDataAttribute.h \
+    pointerDataTransition.I pointerDataTransition.h \
     vec3DataAttribute.I vec3DataAttribute.cxx vec3DataAttribute.h \
     vec3DataTransition.I vec3DataTransition.cxx vec3DataTransition.h \
     vec4DataAttribute.I vec4DataAttribute.cxx vec4DataAttribute.h \
-    vec4DataTransition.I vec4DataTransition.cxx vec4DataTransition.h
+    vec4DataTransition.I vec4DataTransition.cxx vec4DataTransition.h \
+    vectorDataAttribute.I vectorDataAttribute.h vectorDataTransition.I \
+    vectorDataTransition.h
 
   #define INSTALL_HEADERS \
     buttonEventDataAttribute.I buttonEventDataAttribute.h \

+ 1 - 1
panda/src/dgraph/numericDataAttribute.I

@@ -3,9 +3,9 @@
 // 
 ////////////////////////////////////////////////////////////////////
 
+/* okcircular */
 #include "numericDataTransition.h"
 
-#include <indent.h>
 
 template<class NumType>
 TypeHandle NumericDataAttribute<NumType>::_type_handle;

+ 1 - 0
panda/src/dgraph/numericDataAttribute.h

@@ -8,6 +8,7 @@
 
 #include <pandabase.h>
 
+#include <indent.h>
 #include <nodeAttribute.h>
 
 template<class NumType>

+ 1 - 2
panda/src/dgraph/numericDataTransition.I

@@ -3,10 +3,9 @@
 // 
 ////////////////////////////////////////////////////////////////////
 
+/* okcircular */
 #include "numericDataAttribute.h"
 
-#include <indent.h>
-
 template<class NumType>
 TypeHandle NumericDataTransition<NumType>::_type_handle;
 

+ 1 - 0
panda/src/dgraph/numericDataTransition.h

@@ -9,6 +9,7 @@
 #include <pandabase.h>
 
 #include <nodeTransition.h>
+#include <indent.h>
 
 ////////////////////////////////////////////////////////////////////
 // 	 Class : NumericDataTransition

+ 1 - 2
panda/src/dgraph/pointerDataAttribute.I

@@ -3,10 +3,9 @@
 // 
 ////////////////////////////////////////////////////////////////////
 
+/* okcircular */
 #include "pointerDataTransition.h"
 
-#include <indent.h>
-
 template<class PtrType>
 TypeHandle PointerDataAttribute<PtrType>::_type_handle;
 

+ 1 - 0
panda/src/dgraph/pointerDataAttribute.h

@@ -9,6 +9,7 @@
 #include <pandabase.h>
 
 #include <nodeAttribute.h>
+#include <indent.h>
 
 template<class PtrType>
 class PointerDataTransition;

+ 1 - 2
panda/src/dgraph/pointerDataTransition.I

@@ -3,10 +3,9 @@
 // 
 ////////////////////////////////////////////////////////////////////
 
+/* okcircular */
 #include "pointerDataAttribute.h"
 
-#include <indent.h>
-
 template<class PtrType>
 TypeHandle PointerDataTransition<PtrType>::_type_handle;
 

+ 1 - 0
panda/src/dgraph/pointerDataTransition.h

@@ -9,6 +9,7 @@
 #include <pandabase.h>
 
 #include <nodeTransition.h>
+#include <indent.h>
 
 ////////////////////////////////////////////////////////////////////
 // 	 Class : PointerDataTransition

+ 1 - 2
panda/src/dgraph/vectorDataAttribute.I

@@ -3,10 +3,9 @@
 // 
 ////////////////////////////////////////////////////////////////////
 
+/* okcircular */
 #include "vectorDataTransition.h"
 
-#include <indent.h>
-
 template<class VecType, class MatType>
 TypeHandle VectorDataAttribute<VecType, MatType>::_type_handle;
 

+ 1 - 0
panda/src/dgraph/vectorDataAttribute.h

@@ -9,6 +9,7 @@
 #include <pandabase.h>
 
 #include <nodeAttribute.h>
+#include <indent.h>
 
 template<class VecType, class MatType>
 class VectorDataTransition;

+ 1 - 3
panda/src/dgraph/vectorDataTransition.I

@@ -3,11 +3,9 @@
 // 
 ////////////////////////////////////////////////////////////////////
 
+/* okcircular */
 #include "vectorDataAttribute.h"
 
-#include <indent.h>
-#include <pointerTo.h>
-
 template<class VecType, class MatType>
 TypeHandle VectorDataTransition<VecType, MatType>::_type_handle;
 

+ 2 - 0
panda/src/dgraph/vectorDataTransition.h

@@ -10,6 +10,8 @@
 
 #include <nodeTransition.h>
 #include <luse.h>
+#include <indent.h>
+#include <pointerTo.h>
 
 ////////////////////////////////////////////////////////////////////
 // 	 Class : VectorDataTransition

+ 2 - 1
panda/src/pnmimagetypes/Sources.pp

@@ -21,7 +21,8 @@
     color.c colrops.c resolu.c header.c
 
   #define IF_JPEG_SOURCES \
-    pnmFileTypeJPG.cxx pnmFileTypeJPGReader.cxx pnmFileTypeJPGWriter.cxx
+    pnmFileTypeJPG.cxx pnmFileTypeJPG.h \
+    pnmFileTypeJPGReader.cxx pnmFileTypeJPGWriter.cxx
 
   #define INSTALL_HEADERS \
     config_pnmimagetypes.h