Skip to content
Snippets Groups Projects
Commit f4bff690 authored by Tazpn's avatar Tazpn
Browse files

Add missing files

parent 85fba050
No related branches found
No related tags found
No related merge requests found
/* 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
/* 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() {};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment