aboutsummaryrefslogtreecommitdiff
path: root/tool_src/BspLib/AodFormat.cpp
blob: 8ee949c3548cb8e77c470fddc20b8dfb90bc7e6a (plain)
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
//-----------------------------------------------------------------------------
//	BSPLIB MODULE: AodFormat.cpp
//
//  Copyright (c) 1997 by Markus Hadwiger
//  All Rights Reserved.
//-----------------------------------------------------------------------------

// bsplib header files
#include "AodFormat.h"


BSPLIB_NAMESPACE_BEGIN


// get index to section id specified as string (this function is static!) -----
//
int AodFormat::GetSectionId( char *section_name ) 
{ 
	return SingleFormat::GetSectionId( section_name ); 
}


// get name of section specified via id (this function is static!) ------------
//
const char *AodFormat::GetSectionName( int section_id )
{
	return SingleFormat::GetSectionName( section_id );
}


// AodFormat specific static variables ----------------------------------------
//
const char AodFormat::_aodsig_str[]			= "#AOD";
const char AodFormat::AOD_FILE_EXTENSION[]	= ".aod";


BSPLIB_NAMESPACE_END

//-----------------------------------------------------------------------------