summaryrefslogtreecommitdiffstats
path: root/tools/worldbuilder/code/nodes/wbspline.h
blob: 87caf6d96b9ec9929bfcab23466fc9c6cd780f76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//=============================================================================
// Copyright (C) 2002 Radical Entertainment Ltd.  All rights reserved.
//
// File:        wbspline.h
//
// Description: Blahblahblah
//
// History:     05/06/2002 + Created -- NAME
//
//=============================================================================

#ifndef WBSPLINE_H
#define WBSPLINE_H

//========================================
// Nested Includes
//========================================
#include "main/toolhack.h"

#include "precompiled/PCH.h"

//========================================
// Forward References
//========================================
class tlDataChunk;

//=============================================================================
//
// Synopsis:    Blahblahblah
//
//=============================================================================

class WBSpline
{
public:
    static tlDataChunk* Export( MObject& obj );

    enum { MAX_NAME_LEN = 256 };
  
    static void SetName( const char* name );
    static const char* const GetName();
    static char sName[MAX_NAME_LEN];

private:
    WBSpline();
    virtual ~WBSpline();

    //Prevent wasteful constructor creation.
    WBSpline( const WBSpline& wbspline );
    WBSpline& operator=( const WBSpline& wbspline );
};


#endif //WBSPLINE_H