Changeset 10014
- Timestamp:
- 04/10/09 11:16:37 (4 years ago)
- Location:
- OpenSceneGraph/trunk/src/osgPlugins/ply
- Files:
-
- 2 modified
-
ply.h (modified) (2 diffs)
-
plyfile.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/ply/ply.h
r10012 r10014 70 70 typedef struct PlyProperty { /* description of a property */ 71 71 72 c har *name; /* property name */72 const char *name; /* property name */ 73 73 int external_type; /* file's data type */ 74 74 int internal_type; /* program's data type */ … … 151 151 extern PlyProperty **ply_get_element_description(PlyFile *, char *, int*, int*); 152 152 extern void ply_get_element_setup( PlyFile *, char *, int, PlyProperty *); 153 extern void ply_get_property(PlyFile *, c har *, PlyProperty *);153 extern void ply_get_property(PlyFile *, const char *, PlyProperty *); 154 154 extern PlyOtherProp *ply_get_other_properties(PlyFile *, char *, int); 155 155 extern void ply_get_element(PlyFile *, void *); -
OpenSceneGraph/trunk/src/osgPlugins/ply/plyfile.cpp
r10012 r10014 1060 1060 void ply_get_property( 1061 1061 PlyFile *plyfile, 1062 c har *elem_name,1062 const char *elem_name, 1063 1063 PlyProperty *prop 1064 1064 )
