forgot public modifiers for classes

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@452 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
rave3d 2009-07-30 17:14:22 +00:00
parent 91284765c2
commit e2266568d4
19 changed files with 26 additions and 26 deletions

View File

@ -47,7 +47,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Animation public ref class Animation
{ {
public: public:
Animation(void); Animation(void);

View File

@ -48,7 +48,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Bone public ref class Bone
{ {
public: public:
Bone(void); Bone(void);

View File

@ -48,7 +48,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Camera public ref class Camera
{ {
public: public:
Camera(void); Camera(void);

View File

@ -49,7 +49,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class DefaultLogger : Logger public ref class DefaultLogger : Logger
{ {
public: public:
DefaultLogger(void); DefaultLogger(void);

View File

@ -43,7 +43,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
namespace AssimpNET namespace AssimpNET
{ {
ref class Face public ref class Face
{ {
public: public:
Face(void); Face(void);

View File

@ -47,7 +47,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class IOStream public ref class IOStream
{ {
public: public:

View File

@ -47,7 +47,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class IOSystem public ref class IOSystem
{ {
public: public:
IOSystem(void); IOSystem(void);

View File

@ -48,7 +48,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Importer public ref class Importer
{ {
public: public:
Importer(void); Importer(void);

View File

@ -48,7 +48,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
enum LightSourceType public enum LightSourceType
{ {
aiLightSource_UNDEFINED = 0x0, aiLightSource_UNDEFINED = 0x0,
aiLightSource_DIRECTIONAL = 0x1, aiLightSource_DIRECTIONAL = 0x1,
@ -57,7 +57,7 @@ namespace AssimpNET
_aiLightSource_Force32Bit = 0x9fffffff _aiLightSource_Force32Bit = 0x9fffffff
}; };
ref class Light public ref class Light
{ {
public: public:
Light(void); Light(void);

View File

@ -47,13 +47,13 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
enum LogSeverity public enum LogSeverity
{ {
NORMAL, NORMAL,
VERBOSE, VERBOSE,
}; };
ref class Logger public ref class Logger
{ {
public: public:
~Logger(void); ~Logger(void);

View File

@ -49,7 +49,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Material public ref class Material
{ {
public: public:
Material(void); Material(void);

View File

@ -47,7 +47,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
namespace AssimpNET namespace AssimpNET
{ {
ref class Matrix3x3 public ref class Matrix3x3
{ {
public: public:
Matrix3x3(void); Matrix3x3(void);

View File

@ -49,7 +49,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
namespace AssimpNET namespace AssimpNET
{ {
ref class Matrix4x4 public ref class Matrix4x4
{ {
public: public:
Matrix4x4(void); Matrix4x4(void);

View File

@ -50,7 +50,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Mesh public ref class Mesh
{ {
public: public:
Mesh(void); Mesh(void);

View File

@ -47,7 +47,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Node public ref class Node
{ {
public: public:
Node(void); Node(void);

View File

@ -48,7 +48,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
enum AnimBehaviour public enum AnimBehaviour
{ {
aiAnimBehaviour_DEFAULT = 0x0, aiAnimBehaviour_DEFAULT = 0x0,
aiAnimBehaviour_CONSTANT = 0x1, aiAnimBehaviour_CONSTANT = 0x1,
@ -57,7 +57,7 @@ namespace AssimpNET
_aiAnimBehaviour_Force32Bit = 0x8fffffff _aiAnimBehaviour_Force32Bit = 0x8fffffff
}; };
ref class NodeAnim public ref class NodeAnim
{ {
public: public:
NodeAnim(void); NodeAnim(void);

View File

@ -52,7 +52,7 @@ namespace AssimpNET
{ {
ref class Matrix3x3; ref class Matrix3x3;
ref class Quaternion public ref class Quaternion
{ {
public: public:
Quaternion(void); Quaternion(void);

View File

@ -53,7 +53,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
ref class Scene public ref class Scene
{ {
public: public:
Scene(void); Scene(void);

View File

@ -48,7 +48,7 @@ using namespace System;
namespace AssimpNET namespace AssimpNET
{ {
enum TextureType public enum TextureType
{ {
aiTextureType_NONE, aiTextureType_NONE,
aiTextureType_DIFFUSE, aiTextureType_DIFFUSE,
@ -65,7 +65,7 @@ namespace AssimpNET
aiTextureType_UNKNOWN aiTextureType_UNKNOWN
}; };
enum TextureMapping public enum TextureMapping
{ {
aiTextureMapping_UV, aiTextureMapping_UV,
aiTextureMapping_SPHERE, aiTextureMapping_SPHERE,
@ -75,7 +75,7 @@ namespace AssimpNET
aiTextureMapping_OTHER aiTextureMapping_OTHER
}; };
enum TextureOP public enum TextureOP
{ {
aiTextureOp_Multiply, aiTextureOp_Multiply,
aiTextureOp_Add, aiTextureOp_Add,
@ -85,7 +85,7 @@ namespace AssimpNET
aiTextureOp_SignedAdd aiTextureOp_SignedAdd
}; };
enum TextureMapMode public enum TextureMapMode
{ {
TextureMapMode_Wrap, TextureMapMode_Wrap,
TextureMapMode_Clamp, TextureMapMode_Clamp,
@ -93,7 +93,7 @@ namespace AssimpNET
TextureMapMode_Mirror TextureMapMode_Mirror
}; };
ref class Texture public ref class Texture
{ {
public: public:
Texture(void); Texture(void);