~saiarcot895/ubuntu/trusty/openscenegraph/armhf-support

« back to all changes in this revision

Viewing changes to OpenSceneGraph/src/osgPlugins/lwo/lwo2types.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Dachary (OuoU)
  • Date: 2009-03-23 14:08:20 UTC
  • mfrom: (1.1.7 upstream) (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090323140820-i4j3jozdlhyn4lre
rules prevent lib64 with -D LIB_POSTFIX="" (Closes: #517671)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
// basic types
19
19
 
20
 
struct ID4 {
21
 
        char id[4];
 
20
struct ID4
 
21
{
 
22
    ID4()
 
23
    {
 
24
        id[0] = 0;
 
25
        id[1] = 0;
 
26
        id[2] = 0;
 
27
        id[3] = 0;
 
28
    }
 
29
    
 
30
    char id[4];
22
31
};
23
32
 
24
33
typedef signed char                     I1;