Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Niflib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Kim
Niflib
Commits
f4bff690
Commit
f4bff690
authored
17 years ago
by
Tazpn
Browse files
Options
Downloads
Patches
Plain Diff
Add missing files
parent
85fba050
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gen/ExportInfo.h
+40
-0
40 additions, 0 deletions
include/gen/ExportInfo.h
src/gen/ExportInfo.cpp
+29
-0
29 additions, 0 deletions
src/gen/ExportInfo.cpp
with
69 additions
and
0 deletions
include/gen/ExportInfo.h
0 → 100644
+
40
−
0
View file @
f4bff690
/* Copyright (c) 2006, NIF File Format Library and Tools
All rights reserved. Please see niflib.h for license. */
//---THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT---//
//To change this file, alter the niftools/docsys/gen_niflib.py Python script.
#ifndef _EXPORTINFO_H_
#define _EXPORTINFO_H_
#include
"../NIF_IO.h"
namespace
Niflib
{
/*! */
struct
ExportInfo
{
/*! Default Constructor */
NIFLIB_API
ExportInfo
();
/*! Default Destructor */
NIFLIB_API
~
ExportInfo
();
/*! Copy Constructor */
NIFLIB_API
ExportInfo
(
const
ExportInfo
&
src
);
/*! Copy Operator */
NIFLIB_API
ExportInfo
&
operator
=
(
const
ExportInfo
&
src
);
/*! Probably the number of strings that follow. */
unsigned
int
unknown
;
/*! Could be the name of the creator of the NIF file? */
ShortString
creator
;
/*! Unknown. Can be something like 'TriStrip Process Script'. */
ShortString
exportInfo1
;
/*!
* Unknown. Possibly the selected option of the export script. Can be something
* like 'Default Export Script'.
*/
ShortString
exportInfo2
;
};
}
#endif
This diff is collapsed.
Click to expand it.
src/gen/ExportInfo.cpp
0 → 100644
+
29
−
0
View file @
f4bff690
/* Copyright (c) 2006, NIF File Format Library and Tools
All rights reserved. Please see niflib.h for license. */
//---THIS FILE WAS AUTOMATICALLY GENERATED. DO NOT EDIT---//
//To change this file, alter the niftools/docsys/gen_niflib.py Python script.
#include
"../../include/gen/ExportInfo.h"
using
namespace
Niflib
;
//Constructor
ExportInfo
::
ExportInfo
()
:
unknown
((
unsigned
int
)
3
)
{};
//Copy Constructor
ExportInfo
::
ExportInfo
(
const
ExportInfo
&
src
)
{
*
this
=
src
;
};
//Copy Operator
ExportInfo
&
ExportInfo
::
operator
=
(
const
ExportInfo
&
src
)
{
this
->
unknown
=
src
.
unknown
;
this
->
creator
=
src
.
creator
;
this
->
exportInfo1
=
src
.
exportInfo1
;
this
->
exportInfo2
=
src
.
exportInfo2
;
return
*
this
;
};
//Destructor
ExportInfo
::~
ExportInfo
()
{};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment