summaryrefslogtreecommitdiffstats
path: root/tools/trackeditor/code/commands/export.h
blob: f3c031c4a3a88841bfe54f15e39581b0da135e81 (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
#include "precompiled/PCH.h"

#ifndef EXPORT_COMMAND_H
#define EXPORT_COMMAND_H

class ExportCommand : MPxCommand
{
public:
    enum ExportArg
    {
        SELECTED,
        ALL
    };

    ExportCommand();
    ~ExportCommand();

    static void*    creator();
    virtual MStatus doIt( const MArgList& args );  

    static const char*  stringId;

private:
    static bool sRegisteredChunks;
};
#endif